Enable strict typing for pandora (#134536)

This commit is contained in:
Marc Mueller
2025-01-03 13:23:39 +01:00
committed by GitHub
parent 36582f9ac2
commit afa95293dc
3 changed files with 12 additions and 1 deletions

View File

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