Spaces:
Runtime error
Runtime error
.PHONY: style format | |
style: | |
python -m black --line-length 119 scripts src app.py | |
python -m isort scripts src app.py | |
ruff check --fix scripts src app.py | |
quality: | |
python -m black --check --line-length 119 scripts src app.py | |
python -m isort --check-only scripts src app.py | |
ruff check scripts src app.py | |