diff --git a/homeassistant/components/rfxtrx/light.py b/homeassistant/components/rfxtrx/light.py index 9c0157870cb..437cce89c49 100644 --- a/homeassistant/components/rfxtrx/light.py +++ b/homeassistant/components/rfxtrx/light.py @@ -96,14 +96,6 @@ class RfxtrxLight(RfxtrxDevice, Light, RestoreEntity): """Return the brightness of this light between 0..255.""" return self._brightness - @property - def device_state_attributes(self): - """Return the device state attributes.""" - attr = {} - if self._brightness is not None: - attr[ATTR_BRIGHTNESS] = self._brightness - return attr - @property def supported_features(self): """Flag supported features."""