Add strict typing for radarr (#79242)

This commit is contained in:
Marc Mueller
2022-10-07 20:53:34 +02:00
committed by GitHub
parent 5981864992
commit a809f645a7
6 changed files with 55 additions and 37 deletions

View File

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