Mark date entity component as strictly typed (#106716)

This commit is contained in:
Franck Nijhof 2023-12-30 14:23:43 +01:00 committed by GitHub
parent 9d36b716e7
commit 4764af96a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View file

@ -102,6 +102,7 @@ homeassistant.components.configurator.*
homeassistant.components.cover.*
homeassistant.components.cpuspeed.*
homeassistant.components.crownstone.*
homeassistant.components.date.*
homeassistant.components.deconz.*
homeassistant.components.demo.*
homeassistant.components.derivative.*

View file

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