Revert unneeded type annotation in the api integration (#122757)
This commit is contained in:
parent
2a5cb8da32
commit
5f5dcec0b9
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ class APICoreStateView(HomeAssistantView):
|
|||
Home Assistant core is running. Its primary use case is for supervisor
|
||||
to check if Home Assistant is running.
|
||||
"""
|
||||
hass: HomeAssistant = request.app[KEY_HASS]
|
||||
hass = request.app[KEY_HASS]
|
||||
migration = recorder.async_migration_in_progress(hass)
|
||||
live = recorder.async_migration_is_live(hass)
|
||||
recorder_state = {"migration_in_progress": migration, "migration_is_live": live}
|
||||
|
|
Loading…
Add table
Reference in a new issue