mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
6 lines
94 B
Bash
6 lines
94 B
Bash
|
|
#!/bin/sh -e
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
ruff check api --select I --select F401 --fix
|
||
|
|
ruff format api
|