1
0
Fork 0

fix build

This commit is contained in:
Sean Sube 2024-05-19 14:26:38 -05:00
parent 5a0c0e87f8
commit 368bfc2602
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 0 additions and 6 deletions

View File

@ -33,24 +33,18 @@ package-upload:
lint-check: lint-check:
black --check adventure/ black --check adventure/
black --check scripts/
black --check tests/ black --check tests/
flake8 adventure flake8 adventure
flake8 scripts
flake8 tests flake8 tests
isort --check-only --skip __init__.py --filter-files adventure isort --check-only --skip __init__.py --filter-files adventure
isort --check-only --skip __init__.py --filter-files scripts
isort --check-only --skip __init__.py --filter-files tests isort --check-only --skip __init__.py --filter-files tests
lint-fix: lint-fix:
black adventure/ black adventure/
black scripts/
black tests/ black tests/
flake8 adventure flake8 adventure
flake8 scripts
flake8 tests flake8 tests
isort --skip __init__.py --filter-files adventure isort --skip __init__.py --filter-files adventure
isort --skip __init__.py --filter-files scripts
isort --skip __init__.py --filter-files tests isort --skip __init__.py --filter-files tests
style: lint-fix style: lint-fix