]> Nutra Git (v2) - gamesguru/getmyancestors.git/commitdiff
add mypy checking (a dozen or so errors to fix)
authorShane <30691680+gamesguru@users.noreply.github.com>
Tue, 9 Sep 2025 16:55:26 +0000 (12:55 -0400)
committerShane <30691680+gamesguru@users.noreply.github.com>
Tue, 9 Sep 2025 16:59:45 +0000 (12:59 -0400)
.requirements-lint.txt
Makefile
setup.cfg

index 47fc2b78d0a7ae4d69681f3a864c4d539b59a275..7a118799241b3d233f3d7d25e76caf9ebf6836a4 100644 (file)
@@ -1,5 +1,5 @@
 flake8==7.3.0
 isort==6.0.1
-mypy==1.171
+mypy==1.17.1
 pylint==3.3.8
 black==25.1.0
index 643def2a360aa2bf4076169e8af4bad62e1dbfdf..782467fe227fc8af28018bf1657f88461fc1f04f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -6,3 +6,4 @@ lint:
        black $(LINT_LOCS)
        isort $(LINT_LOCS)
        pylint $(LINT_LOCS)
+       mypy $(LINT_LOCS)
index d5a420a0fb61126ef0b50d0b988a2dc4430fc955..b2604c12355cc4314e78531865accb8670351ae3 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -65,7 +65,7 @@ show_error_codes = True
 ;pretty = True
 
 disallow_incomplete_defs = True
-disallow_untyped_defs = True
+;disallow_untyped_defs = True
 disallow_untyped_calls = True
 disallow_untyped_decorators = True