Disallow untyped functions

The whole codebase is typed now, this will help keeping it this way to
make development nicer.
This commit is contained in:
Jakub Stasiak 2019-12-12 02:26:29 +01:00
parent 9dfabf12f6
commit 45700b139d
1 changed files with 1 additions and 2 deletions

View File

@ -3,5 +3,4 @@ ignore_missing_imports = true
follow_imports = error follow_imports = error
warn_no_return = true warn_no_return = true
warn_redundant_casts = true warn_redundant_casts = true
# TODO: disallow untyped defs once we have full type hint coverage disallow_untyped_defs = true
disallow_untyped_defs = false