eleftherias's picture
migrate to poetry (#2)
c222ee6 verified
raw
history blame contribute delete
252 Bytes
.PHONY: style format
style:
poetry run python -m black --line-length 119 .
poetry run python -m isort .
ruff check --fix .
quality:
poetry run python -m black --check --line-length 119 .
poetry run python -m isort --check-only .
ruff check .