7 lines
69 B
Bash
7 lines
69 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
APP_PATH="src"
|
||
|
|
||
|
black $APP_PATH
|
||
|
ruff $APP_PATH --fix
|