mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 20:27:08 +00:00
Fix tradfri asyncio.wait (#99730)
This commit is contained in:
parent
5d54660802
commit
d8035ddf47
@ -122,7 +122,7 @@ class FlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
|
|||||||
if same_hub_entries:
|
if same_hub_entries:
|
||||||
await asyncio.wait(
|
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
|
for entry_id in same_hub_entries
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user