Update lint.py

This commit is contained in:
zandercymatics 2024-01-18 09:13:05 -07:00
parent 19835f47d5
commit 126a700bd9
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -26,14 +26,14 @@ class Command(BaseCommand):
"purpose": "Linting",
"args": ["flake8", ".", "--count", "--show-source", "--statistics"],
},
"mypy": {
"purpose": "Type checking",
"args": ["mypy", "."],
},
"black": {
"purpose": "Formatting",
"args": ["black", "--check", "."],
},
"mypy": {
"purpose": "Type checking",
"args": ["mypy", "."],
},
"bandit": {
"purpose": "Security scanning",
"args": ["bandit", "-r", "."],