10 lines
140 B
Bash
10 lines
140 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
|
||
|
|
. .venv/bin/activate
|
||
|
|
|
||
|
|
python -m black .
|
||
|
|
python -m isort .
|
||
|
|
python -m flake8 .
|