Fix return type annotations and enable strict typing in Xbox integration (#156746)

This commit is contained in:
Manu
2025-11-17 14:38:02 +01:00
committed by GitHub
parent 3a69534b09
commit eb9d625926
4 changed files with 13 additions and 2 deletions

10
mypy.ini generated
View File

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