Enable strict typing on script integration (#122079)

This commit is contained in:
Erik Montnemery
2024-07-17 15:11:06 +02:00
committed by GitHub
parent 1e8da192b6
commit 07ceafed62
6 changed files with 56 additions and 24 deletions

View File

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