1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-19 18:38:58 +00:00

Enable strict typing for androidtv (#106820)

This commit is contained in:
Marc Mueller
2024-01-01 20:15:01 +01:00
committed by GitHub
parent 06a5e25853
commit 4e0c0cf2ca
5 changed files with 16 additions and 5 deletions

View File

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