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
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

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