mirror of
https://github.com/home-assistant/core.git
synced 2025-07-17 10:17:09 +00:00
Bump aiorecollect to 1.0.8 (#55300)
This commit is contained in:
parent
ef10773202
commit
cbd65efe52
@ -3,7 +3,7 @@
|
||||
"name": "ReCollect Waste",
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/recollect_waste",
|
||||
"requirements": ["aiorecollect==1.0.7"],
|
||||
"requirements": ["aiorecollect==1.0.8"],
|
||||
"codeowners": ["@bachya"],
|
||||
"iot_class": "cloud_polling"
|
||||
}
|
||||
|
@ -20,7 +20,6 @@ from homeassistant.helpers.update_coordinator import (
|
||||
CoordinatorEntity,
|
||||
DataUpdateCoordinator,
|
||||
)
|
||||
from homeassistant.util.dt import as_utc
|
||||
|
||||
from .const import CONF_PLACE_ID, CONF_SERVICE_ID, DATA_COORDINATOR, DOMAIN, LOGGER
|
||||
|
||||
@ -124,7 +123,7 @@ class ReCollectWasteSensor(CoordinatorEntity, SensorEntity):
|
||||
ATTR_NEXT_PICKUP_TYPES: async_get_pickup_type_names(
|
||||
self._entry, next_pickup_event.pickup_types
|
||||
),
|
||||
ATTR_NEXT_PICKUP_DATE: as_utc(next_pickup_event.date).isoformat(),
|
||||
ATTR_NEXT_PICKUP_DATE: next_pickup_event.date.isoformat(),
|
||||
}
|
||||
)
|
||||
self._attr_native_value = as_utc(pickup_event.date).isoformat()
|
||||
self._attr_native_value = pickup_event.date.isoformat()
|
||||
|
@ -237,7 +237,7 @@ aiopvpc==2.2.0
|
||||
aiopylgtv==0.4.0
|
||||
|
||||
# homeassistant.components.recollect_waste
|
||||
aiorecollect==1.0.7
|
||||
aiorecollect==1.0.8
|
||||
|
||||
# homeassistant.components.shelly
|
||||
aioshelly==0.6.4
|
||||
|
@ -158,7 +158,7 @@ aiopvpc==2.2.0
|
||||
aiopylgtv==0.4.0
|
||||
|
||||
# homeassistant.components.recollect_waste
|
||||
aiorecollect==1.0.7
|
||||
aiorecollect==1.0.8
|
||||
|
||||
# homeassistant.components.shelly
|
||||
aioshelly==0.6.4
|
||||
|
Loading…
x
Reference in New Issue
Block a user