Enable strict typing for webhook (#107946)

This commit is contained in:
Marc Mueller
2024-01-13 20:08:26 +01:00
committed by GitHub
parent ca421d4f86
commit 9221f5da10
4 changed files with 19 additions and 5 deletions

View File

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