Enable strict typing for onboarding (#108097)

This commit is contained in:
Marc Mueller
2024-01-15 16:53:24 +01:00
committed by GitHub
parent 5dde45e01f
commit 6a9fdaae7a
5 changed files with 52 additions and 21 deletions

View File

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