On HA restart parse last_reset as a datetime object (#42939)

pull/40181/head^2
Diogo Gomes 2020-11-09 07:35:50 +00:00 committed by GitHub
parent 42cdbc7e1d
commit 12adde5349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -264,7 +264,9 @@ class UtilityMeterSensor(RestoreEntity):
self._state = Decimal(state.state) self._state = Decimal(state.state)
self._unit_of_measurement = state.attributes.get(ATTR_UNIT_OF_MEASUREMENT) self._unit_of_measurement = state.attributes.get(ATTR_UNIT_OF_MEASUREMENT)
self._last_period = state.attributes.get(ATTR_LAST_PERIOD) self._last_period = state.attributes.get(ATTR_LAST_PERIOD)
self._last_reset = state.attributes.get(ATTR_LAST_RESET) self._last_reset = dt_util.parse_datetime(
state.attributes.get(ATTR_LAST_RESET)
)
self.async_write_ha_state() self.async_write_ha_state()
if state.attributes.get(ATTR_STATUS) == PAUSED: if state.attributes.get(ATTR_STATUS) == PAUSED:
# Fake cancellation function to init the meter paused # Fake cancellation function to init the meter paused