Add warn_unreachable=True mypy config

This commit is contained in:
Taneli Hukkinen 2019-11-04 21:05:12 +01:00
parent dcfeb3e38a
commit cab0e0c1c4

View File

@ -9,6 +9,7 @@ disallow_any_generics = True
disallow_untyped_calls = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unreachable = True
strict_equality = True
[mypy-libp2p.kademlia.*]