mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 13:47:35 +00:00
Bump powerfox to v1.2.0 (#134908)
This commit is contained in:
parent
81a669c163
commit
b815899fdc
@ -7,6 +7,7 @@ from powerfox import (
|
|||||||
Powerfox,
|
Powerfox,
|
||||||
PowerfoxAuthenticationError,
|
PowerfoxAuthenticationError,
|
||||||
PowerfoxConnectionError,
|
PowerfoxConnectionError,
|
||||||
|
PowerfoxNoDataError,
|
||||||
Poweropti,
|
Poweropti,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -45,5 +46,5 @@ class PowerfoxDataUpdateCoordinator(DataUpdateCoordinator[Poweropti]):
|
|||||||
return await self.client.device(device_id=self.device.id)
|
return await self.client.device(device_id=self.device.id)
|
||||||
except PowerfoxAuthenticationError as err:
|
except PowerfoxAuthenticationError as err:
|
||||||
raise ConfigEntryAuthFailed(err) from err
|
raise ConfigEntryAuthFailed(err) from err
|
||||||
except PowerfoxConnectionError as err:
|
except (PowerfoxConnectionError, PowerfoxNoDataError) as err:
|
||||||
raise UpdateFailed(err) from err
|
raise UpdateFailed(err) from err
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
"documentation": "https://www.home-assistant.io/integrations/powerfox",
|
"documentation": "https://www.home-assistant.io/integrations/powerfox",
|
||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
"quality_scale": "silver",
|
"quality_scale": "silver",
|
||||||
"requirements": ["powerfox==1.1.0"],
|
"requirements": ["powerfox==1.2.0"],
|
||||||
"zeroconf": [
|
"zeroconf": [
|
||||||
{
|
{
|
||||||
"type": "_http._tcp.local.",
|
"type": "_http._tcp.local.",
|
||||||
|
@ -1650,7 +1650,7 @@ pmsensor==0.4
|
|||||||
poolsense==0.0.8
|
poolsense==0.0.8
|
||||||
|
|
||||||
# homeassistant.components.powerfox
|
# homeassistant.components.powerfox
|
||||||
powerfox==1.1.0
|
powerfox==1.2.0
|
||||||
|
|
||||||
# homeassistant.components.reddit
|
# homeassistant.components.reddit
|
||||||
praw==7.5.0
|
praw==7.5.0
|
||||||
|
@ -1360,7 +1360,7 @@ plumlightpad==0.0.11
|
|||||||
poolsense==0.0.8
|
poolsense==0.0.8
|
||||||
|
|
||||||
# homeassistant.components.powerfox
|
# homeassistant.components.powerfox
|
||||||
powerfox==1.1.0
|
powerfox==1.2.0
|
||||||
|
|
||||||
# homeassistant.components.reddit
|
# homeassistant.components.reddit
|
||||||
praw==7.5.0
|
praw==7.5.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user