Skip to content

Commit

Permalink
Fix regression in Skybell (#92735)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkdrob committed May 7, 2023
1 parent 28efeb9 commit e753a33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/skybell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
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)

return True
Expand Down

0 comments on commit e753a33

Please sign in to comment.