Enable strict typing of hardkernel (#83122)

This commit is contained in:
Erik Montnemery
2022-12-02 15:56:48 +01:00
committed by GitHub
parent e325ec26d0
commit bd97f59395
2 changed files with 11 additions and 0 deletions

View File

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