Skip to content

Commit

Permalink
Merge pull request #249 from jwillemsen/jwi-async_forward_entry_setups
Browse files Browse the repository at this point in the history
Use async_forward_entry_setups to fix warning, we require now 2024.7.…
  • Loading branch information
jwillemsen authored Jul 12, 2024
2 parents 9d0e56c + a8579fb commit 75b6722
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions custom_components/daikin_onecta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> b

config_entry.async_on_unload(config_entry.add_update_listener(update_listener))

for component in COMPONENT_TYPES:
hass.async_create_task(hass.config_entries.async_forward_entry_setup(config_entry, component))
await hass.config_entries.async_forward_entry_setups(config_entry, COMPONENT_TYPES)

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": "Daikin Onecta",
"render_readme": true,
"homeassistant": "2024.1.2"
"homeassistant": "2024.7.0"
}

0 comments on commit 75b6722

Please sign in to comment.