From: Shane <30691680+gamesguru@users.noreply.github.com> Date: Tue, 9 Sep 2025 16:55:26 +0000 (-0400) Subject: add mypy checking (a dozen or so errors to fix) X-Git-Url: https://git.nutra.tk/v2?a=commitdiff_plain;h=bfb096161543dd48403d2d899edd27f4f64b113d;p=gamesguru%2Fgetmyancestors.git add mypy checking (a dozen or so errors to fix) --- diff --git a/.requirements-lint.txt b/.requirements-lint.txt index 47fc2b7..7a11879 100644 --- a/.requirements-lint.txt +++ b/.requirements-lint.txt @@ -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 diff --git a/Makefile b/Makefile index 643def2..782467f 100644 --- a/Makefile +++ b/Makefile @@ -6,3 +6,4 @@ lint: black $(LINT_LOCS) isort $(LINT_LOCS) pylint $(LINT_LOCS) + mypy $(LINT_LOCS) diff --git a/setup.cfg b/setup.cfg index d5a420a..b2604c1 100644 --- 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