mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 20:57:21 +00:00
Fix regression in Skybell (#92735)
This commit is contained in:
parent
28efeb9d9e
commit
e753a33fd7
@ -52,7 +52,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|||||||
for coordinator in device_coordinators
|
for coordinator in device_coordinators
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
hass.data[DOMAIN][entry.entry_id] = device_coordinators
|
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = device_coordinators
|
||||||
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user