Change mypy config

This commit is contained in:
Alex Root Junior 2023-01-08 22:15:03 +02:00
parent bd59863c21
commit 46814b48e5
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC
7 changed files with 49 additions and 27 deletions

View file

@ -70,7 +70,7 @@ clean:
lint:
isort --check-only $(code_dir)
black --check --diff $(code_dir)
ruff $(code_dir)
ruff $(package_dir)
mypy $(package_dir)
.PHONY: reformat