Enable strict typing for Opower (#148096)

This commit is contained in:
tronikos
2025-07-04 07:19:04 -07:00
committed by GitHub
parent e98fe7dc9c
commit 1cb9767bb8
2 changed files with 11 additions and 0 deletions

10
mypy.ini generated
View File

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