Enable strict typing for incomfort integration (#136291)

* Enable strict typing for incomfort integration

* Comply to strict typing

* Wrap in bool
This commit is contained in:
Jan Bouwhuis
2025-01-23 19:21:39 +01:00
committed by GitHub
parent ac7b9d7639
commit 59d677ba3e
6 changed files with 16 additions and 5 deletions

10
mypy.ini generated
View File

@@ -2376,6 +2376,16 @@ disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.incomfort.*]
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.input_button.*]
check_untyped_defs = true
disallow_incomplete_defs = true