Enable strict typing for HEOS (#136797)

This commit is contained in:
Andrew Sayre
2025-01-29 00:28:13 -06:00
committed by GitHub
parent a2b5a96bc9
commit a135b4bb43
7 changed files with 21 additions and 7 deletions

10
mypy.ini generated
View File

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