Turn on strict checks for mypy

This commit is contained in:
Kovid Goyal
2021-10-27 14:00:38 +05:30
parent 60472fcee3
commit 212af78032

View File

@@ -28,6 +28,7 @@ disallow_untyped_defs = True
disallow_untyped_decorators = True
disallow_untyped_calls = True
disallow_incomplete_defs = True
strict = True
no_implicit_reexport = True
[mypy-conf]