mirror of
https://github.com/home-assistant/core.git
synced 2025-09-09 23:01:40 +02:00
Bump reolink-aio to 0.14.7 (#151045)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -253,6 +253,7 @@ class ReolinkChimeCoordinatorEntity(ReolinkChannelCoordinatorEntity):
|
||||
coordinator: DataUpdateCoordinator[None] | None = None,
|
||||
) -> None:
|
||||
"""Initialize ReolinkChimeCoordinatorEntity for a chime."""
|
||||
assert chime.channel is not None
|
||||
super().__init__(reolink_data, chime.channel, coordinator)
|
||||
|
||||
self._chime = chime
|
||||
|
@@ -19,5 +19,5 @@
|
||||
"iot_class": "local_push",
|
||||
"loggers": ["reolink_aio"],
|
||||
"quality_scale": "platinum",
|
||||
"requirements": ["reolink-aio==0.14.6"]
|
||||
"requirements": ["reolink-aio==0.14.7"]
|
||||
}
|
||||
|
@@ -816,6 +816,8 @@ async def async_setup_entry(
|
||||
ReolinkChimeNumberEntity(reolink_data, chime, entity_description)
|
||||
for entity_description in CHIME_NUMBER_ENTITIES
|
||||
for chime in api.chime_list
|
||||
for chime in api.chime_list
|
||||
if chime.channel is not None
|
||||
)
|
||||
async_add_entities(entities)
|
||||
|
||||
|
@@ -381,6 +381,7 @@ async def async_setup_entry(
|
||||
for entity_description in CHIME_SELECT_ENTITIES
|
||||
for chime in reolink_data.host.api.chime_list
|
||||
if entity_description.supported(chime)
|
||||
if entity_description.supported(chime) and chime.channel is not None
|
||||
)
|
||||
async_add_entities(entities)
|
||||
|
||||
|
@@ -381,6 +381,7 @@ async def async_setup_entry(
|
||||
ReolinkChimeSwitchEntity(reolink_data, chime, entity_description)
|
||||
for entity_description in CHIME_SWITCH_ENTITIES
|
||||
for chime in reolink_data.host.api.chime_list
|
||||
if chime.channel is not None
|
||||
)
|
||||
|
||||
# Can be removed in HA 2025.4.0
|
||||
|
2
requirements_all.txt
generated
2
requirements_all.txt
generated
@@ -2661,7 +2661,7 @@ renault-api==0.4.0
|
||||
renson-endura-delta==1.7.2
|
||||
|
||||
# homeassistant.components.reolink
|
||||
reolink-aio==0.14.6
|
||||
reolink-aio==0.14.7
|
||||
|
||||
# homeassistant.components.idteck_prox
|
||||
rfk101py==0.0.1
|
||||
|
2
requirements_test_all.txt
generated
2
requirements_test_all.txt
generated
@@ -2207,7 +2207,7 @@ renault-api==0.4.0
|
||||
renson-endura-delta==1.7.2
|
||||
|
||||
# homeassistant.components.reolink
|
||||
reolink-aio==0.14.6
|
||||
reolink-aio==0.14.7
|
||||
|
||||
# homeassistant.components.rflink
|
||||
rflink==0.0.67
|
||||
|
Reference in New Issue
Block a user