Mark time entity component as strictly typed (#106720)

This commit is contained in:
Franck Nijhof 2023-12-31 02:52:59 +01:00 committed by GitHub
parent 95f6336ecd
commit b1dd064f2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -353,6 +353,7 @@ homeassistant.components.threshold.*
homeassistant.components.tibber.*
homeassistant.components.tile.*
homeassistant.components.tilt_ble.*
homeassistant.components.time.*
homeassistant.components.todo.*
homeassistant.components.tolo.*
homeassistant.components.tplink.*

View File

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