Remove accidental PR inclusion

This commit is contained in:
zandercymatics 2024-01-18 09:12:28 -07:00
parent 4054bef461
commit 19835f47d5
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -22,14 +22,14 @@ class Command(BaseCommand):
# and, in all cases, make sure to use a list (not a string) for flags/args
# as this will quote the output.
linters = {
"mypy": {
"purpose": "Type checking",
"args": ["mypy", "."],
},
"flake8": {
"purpose": "Linting",
"args": ["flake8", ".", "--count", "--show-source", "--statistics"],
},
"mypy": {
"purpose": "Type checking",
"args": ["mypy", "."],
},
"black": {
"purpose": "Formatting",
"args": ["black", "--check", "."],