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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 1 deletions

View File

@ -412,6 +412,7 @@ homeassistant.components.recollect_waste.*
homeassistant.components.recorder.*
homeassistant.components.remember_the_milk.*
homeassistant.components.remote.*
homeassistant.components.remote_calendar.*
homeassistant.components.renault.*
homeassistant.components.reolink.*
homeassistant.components.repairs.*

View File

@ -97,4 +97,4 @@ rules:
# Platinum
async-dependency: todo
inject-websession: done
strict-typing: todo
strict-typing: done

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