Add strict typing to remote_calendar (#140734)

This commit is contained in:
Thomas55555
2025-03-16 19:32:59 +01:00
committed by GitHub
parent 2424d1c615
commit 2ece7fbc11
3 changed files with 12 additions and 1 deletions

10
mypy.ini generated
View File

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