Skip to content

Commit

Permalink
fix: Use async_forward_entry_setups
Browse files Browse the repository at this point in the history
  • Loading branch information
eifinger committed Feb 7, 2023
1 parent b1161ee commit 9e52a6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/here_weather/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
here_weather_coordinators[mode] = coordinator
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = here_weather_coordinators

hass.config_entries.async_setup_platforms(entry, PLATFORMS)
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)

return True

Expand Down
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "HERE Destination Weather",
"hacs": "1.6.0",
"homeassistant": "2021.12.0"
"homeassistant": "2023.2.0"
}

0 comments on commit 9e52a6b

Please sign in to comment.