alex n
first commit
e5457b7
raw
history blame contribute delete
236 Bytes
.PHONY: style format run
style:
python -m black --line-length 119 .
python -m isort .
ruff check --fix .
quality:
python -m black --check --line-length 119 .
python -m isort --check-only .
ruff check .
run:
python -m src.main