mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 06:07:17 +00:00
Bump nexia to 0.9.6 (#48982)
- Now returns None when a humidity sensor cannot be read instead of throwing an exception
This commit is contained in:
parent
7e30ab2fb2
commit
a0a8638a2d
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"domain": "nexia",
|
"domain": "nexia",
|
||||||
"name": "Nexia",
|
"name": "Nexia",
|
||||||
"requirements": ["nexia==0.9.5"],
|
"requirements": ["nexia==0.9.6"],
|
||||||
"codeowners": ["@bdraco"],
|
"codeowners": ["@bdraco"],
|
||||||
"documentation": "https://www.home-assistant.io/integrations/nexia",
|
"documentation": "https://www.home-assistant.io/integrations/nexia",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
|
@ -13,4 +13,6 @@ def is_invalid_auth_code(http_status_code):
|
|||||||
|
|
||||||
def percent_conv(val):
|
def percent_conv(val):
|
||||||
"""Convert an actual percentage (0.0-1.0) to 0-100 scale."""
|
"""Convert an actual percentage (0.0-1.0) to 0-100 scale."""
|
||||||
|
if val is None:
|
||||||
|
return None
|
||||||
return round(val * 100.0, 1)
|
return round(val * 100.0, 1)
|
||||||
|
@ -988,7 +988,7 @@ netdisco==2.8.2
|
|||||||
neurio==0.3.1
|
neurio==0.3.1
|
||||||
|
|
||||||
# homeassistant.components.nexia
|
# homeassistant.components.nexia
|
||||||
nexia==0.9.5
|
nexia==0.9.6
|
||||||
|
|
||||||
# homeassistant.components.nextcloud
|
# homeassistant.components.nextcloud
|
||||||
nextcloudmonitor==1.1.0
|
nextcloudmonitor==1.1.0
|
||||||
|
@ -530,7 +530,7 @@ nessclient==0.9.15
|
|||||||
netdisco==2.8.2
|
netdisco==2.8.2
|
||||||
|
|
||||||
# homeassistant.components.nexia
|
# homeassistant.components.nexia
|
||||||
nexia==0.9.5
|
nexia==0.9.6
|
||||||
|
|
||||||
# homeassistant.components.notify_events
|
# homeassistant.components.notify_events
|
||||||
notify-events==1.0.4
|
notify-events==1.0.4
|
||||||
|
Loading…
x
Reference in New Issue
Block a user