Skip to content

Commit 75b6722

Browse files
authored
Merge pull request #249 from jwillemsen/jwi-async_forward_entry_setups
Use async_forward_entry_setups to fix warning, we require now 2024.7.…
2 parents 9d0e56c + a8579fb commit 75b6722

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

custom_components/daikin_onecta/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> b
5757

5858
config_entry.async_on_unload(config_entry.add_update_listener(update_listener))
5959

60-
for component in COMPONENT_TYPES:
61-
hass.async_create_task(hass.config_entries.async_forward_entry_setup(config_entry, component))
60+
await hass.config_entries.async_forward_entry_setups(config_entry, COMPONENT_TYPES)
6261

6362
return True
6463

hacs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "Daikin Onecta",
33
"render_readme": true,
4-
"homeassistant": "2024.1.2"
4+
"homeassistant": "2024.7.0"
55
}

0 commit comments

Comments
 (0)