Enable strict typing for duckdns (#108022)

This commit is contained in:
Marc Mueller
2024-01-15 09:09:57 +01:00
committed by GitHub
parent 5bde007048
commit 16f110658c
3 changed files with 29 additions and 10 deletions

View File

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