From 1b81cd1fe91f8d9f6a32009fd436a242b3bd742f Mon Sep 17 00:00:00 2001 From: Pascal F Date: Wed, 22 Nov 2023 05:10:53 +0100 Subject: [PATCH] test CI failing --- .mypy.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.mypy.ini b/.mypy.ini index 629535a..19db5ef 100644 --- a/.mypy.ini +++ b/.mypy.ini @@ -9,13 +9,13 @@ strict_equality = True extra_checks = True # Strongly recommend enabling this one as soon as you can -; check_untyped_defs = True +check_untyped_defs = True # These shouldn't be too much additional work, but may be tricky to # get passing if you use a lot of untyped libraries disallow_subclassing_any = True disallow_untyped_decorators = True -; disallow_any_generics = True +disallow_any_generics = True # These next few are various gradations of forcing use of type annotations ; disallow_untyped_calls = True