mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 15:17:35 +00:00
Fix tradfri asyncio.wait (#99730)
This commit is contained in:
parent
39669bc788
commit
8b69f9fda8
@ -122,7 +122,7 @@ class FlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
|
||||
if same_hub_entries:
|
||||
await asyncio.wait(
|
||||
[
|
||||
self.hass.config_entries.async_remove(entry_id)
|
||||
asyncio.create_task(self.hass.config_entries.async_remove(entry_id))
|
||||
for entry_id in same_hub_entries
|
||||
]
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user