.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 .