Skip to content

Commit

Permalink
Merge branch 'release/2023.6.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
syssi committed Jun 13, 2023
2 parents 0e53ce6 + 249f227 commit 7afb329
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ async def async_service_handler(service):
if not hasattr(device, method["method"]):
continue
await getattr(device, method["method"])(**params)
update_tasks.append(device.async_update_ha_state(True))
update_tasks.append(asyncio.create_task(device.async_update_ha_state(True)))

if update_tasks:
await asyncio.wait(update_tasks)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
"construct==2.10.56",
"python-miio>=0.5.12"
],
"version": "2023.6.0.3"
"version": "2023.6.0.4"
}

0 comments on commit 7afb329

Please sign in to comment.