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:
parent
9dfabf12f6
commit
45700b139d
3
mypy.ini
3
mypy.ini
|
@ -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
|
|
||||||
|
|
Loading…
Reference in New Issue