Add strict typing to Sonarr (#79802)

This commit is contained in:
Robert Hillis
2022-10-07 13:08:08 -04:00
committed by GitHub
parent 04f07cecba
commit 5981864992
4 changed files with 15 additions and 9 deletions

View File

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