From 2f3c5b2ee0ef04d7d8ca6203a76cfac1a735cb4d Mon Sep 17 00:00:00 2001 From: Taneli Hukkinen Date: Sun, 2 Feb 2020 16:48:09 +0100 Subject: [PATCH] Disable incremental mode of mypy --- mypy.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/mypy.ini b/mypy.ini index 653e3e2..79ac9c1 100644 --- a/mypy.ini +++ b/mypy.ini @@ -8,6 +8,7 @@ disallow_untyped_calls = True disallow_untyped_decorators = True disallow_subclassing_any = False ignore_missing_imports = True +incremental = False strict_optional = False warn_unused_ignores = True strict_equality = True