Enable strict typing in Tankerkoenig (#149535)

This commit is contained in:
Michael
2025-07-27 22:48:15 +02:00
committed by GitHub
parent 622cce03a1
commit e30d405625
4 changed files with 22 additions and 4 deletions

10
mypy.ini generated
View File

@@ -4768,6 +4768,16 @@ disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.tankerkoenig.*]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.tautulli.*]
check_untyped_defs = true
disallow_incomplete_defs = true