From 953042d75d3b6c1ce09cdb3738405fe6ac6cb17c Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 4 Dec 2018 07:28:28 +0100 Subject: [PATCH] mypy: Disable untyped decorators --- mypy.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index be5424327..154a877bf 100644 --- a/mypy.ini +++ b/mypy.ini @@ -7,6 +7,7 @@ python_version = 3.6 warn_redundant_casts = True warn_unused_ignores = True disallow_subclassing_any = True +disallow_untyped_decorators = True ## https://github.com/python/mypy/issues/5957 # warn_unused_configs = True # disallow_untyped_calls = True @@ -14,7 +15,6 @@ disallow_subclassing_any = True ## https://github.com/python/mypy/issues/5954 # disallow_incomplete_defs = True # check_untyped_defs = True -# disallow_untyped_decorators = True # no_implicit_optional = True # warn_return_any = True