Skip to content

Commit 93cc13d

Browse files
Changed from deprecated device_state_attributes to extra_state_attributes
Backwards compatibility for "device_state_attributes" deprecated in 2021.4 Warning added in 2021.12, will be removed in 2022.4
1 parent d240e5a commit 93cc13d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

custom_components/miio_gateway/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def should_poll(self):
448448
return False
449449

450450
@property
451-
def device_state_attributes(self):
451+
def extra_state_attributes(self):
452452
attrs = { ATTR_VOLTAGE: self._voltage, ATTR_LQI: self._lqi, ATTR_MODEL: self._model, ATTR_ALIVE: self._alive }
453453
return attrs
454454

custom_components/miio_gateway/binary_sensor.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ def device_class(self):
105105
return self._device_class
106106

107107
@property
108-
def device_state_attributes(self):
109-
attrs = super().device_state_attributes
108+
def extra_state_attributes(self):
109+
attrs = super().extra_state_attributes
110110
if self._last_action is not None:
111111
attrs.update({ATTR_LAST_ACTION: self._last_action})
112112
return attrs

0 commit comments

Comments
 (0)