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