openevse: Turn on strict typing (#161957)

Co-authored-by: Josef Zweck <josef@zweck.dev>
This commit is contained in:
Colin
2026-01-31 08:56:17 -07:00
committed by GitHub
parent eafeba792d
commit c2d3244d26
2 changed files with 11 additions and 0 deletions

10
mypy.ini generated
View File

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