Enable strict typing for search (#107912)

This commit is contained in:
Marc Mueller
2024-01-13 21:40:50 +01:00
committed by GitHub
parent 3649cb96de
commit 5e79a0e583
3 changed files with 24 additions and 13 deletions

View File

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