Enable strict typing of homeworks (#112267)

This commit is contained in:
Erik Montnemery
2024-03-04 19:50:33 +01:00
committed by GitHub
parent 7406ae31f6
commit 68141873cd
4 changed files with 35 additions and 17 deletions

View File

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