Skip to content

Commit

Permalink
Merge branch 'release/2023.6.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
syssi committed Jun 9, 2023
2 parents 585ad5d + 59c177c commit 1d5a4c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion custom_components/xiaomi_miio_fan/fan.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,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
12 changes: 6 additions & 6 deletions custom_components/xiaomi_miio_fan/manifest.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"domain": "xiaomi_miio_fan",
"name": "Xiaomi Mi Smart Pedestal Fan",
"version": "2022.8.0.0",
"iot_class": "local_polling",
"codeowners": [
"@syssi"
],
"dependencies": [],
"documentation": "https://github.com/syssi/xiaomi_fan",
"iot_class": "local_polling",
"issue_tracker": "https://github.com/syssi/xiaomi_fan/issues",
"requirements": [
"construct==2.10.56",
"python-miio>=0.5.12"
],
"dependencies": [],
"codeowners": [
"@syssi"
]
"version": "2023.6.0.0"
}

0 comments on commit 1d5a4c2

Please sign in to comment.