mypy: Disable warn_unused_configs

Looks like mypy's cache causes config sections to be ignored sometimes.
This commit is contained in:
Florian Bruhin 2018-11-27 08:39:05 +01:00
parent 7934dc9a95
commit ec0dc59b06

View File

@ -4,10 +4,11 @@
python_version = 3.6
# --strict
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
disallow_subclassing_any = True
## https://github.com/python/mypy/issues/5957
# warn_unused_configs = True
# disallow_untyped_calls = True
# disallow_untyped_defs = True
## https://github.com/python/mypy/issues/5954