Bump asyncsleepiq to 1.2.0 (#68438)
Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
parent
28d3117a88
commit
d065475aac
4 changed files with 7 additions and 8 deletions
|
@ -34,11 +34,10 @@ class SleepIQDataUpdateCoordinator(DataUpdateCoordinator[None]):
|
|||
self.client = client
|
||||
|
||||
async def _async_update_data(self) -> None:
|
||||
tasks = (
|
||||
[self.client.fetch_bed_statuses()]
|
||||
+ [bed.foundation.update_lights() for bed in self.client.beds.values()]
|
||||
+ [bed.foundation.update_actuators() for bed in self.client.beds.values()]
|
||||
)
|
||||
tasks = [self.client.fetch_bed_statuses()] + [
|
||||
bed.foundation.update_foundation_status()
|
||||
for bed in self.client.beds.values()
|
||||
]
|
||||
await asyncio.gather(*tasks)
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "SleepIQ",
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/sleepiq",
|
||||
"requirements": ["asyncsleepiq==1.1.2"],
|
||||
"requirements": ["asyncsleepiq==1.2.0"],
|
||||
"codeowners": ["@mfugate1", "@kbickar"],
|
||||
"dhcp": [
|
||||
{
|
||||
|
|
|
@ -335,7 +335,7 @@ async-upnp-client==0.27.0
|
|||
asyncpysupla==0.0.5
|
||||
|
||||
# homeassistant.components.sleepiq
|
||||
asyncsleepiq==1.1.2
|
||||
asyncsleepiq==1.2.0
|
||||
|
||||
# homeassistant.components.aten_pe
|
||||
atenpdu==0.3.2
|
||||
|
|
|
@ -265,7 +265,7 @@ arcam-fmj==0.12.0
|
|||
async-upnp-client==0.27.0
|
||||
|
||||
# homeassistant.components.sleepiq
|
||||
asyncsleepiq==1.1.2
|
||||
asyncsleepiq==1.2.0
|
||||
|
||||
# homeassistant.components.aurora
|
||||
auroranoaa==0.0.2
|
||||
|
|
Loading…
Add table
Reference in a new issue