Use LightEntityStateAttribute enum in LimitlessLED (#175938)

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
epenet
2026-07-08 11:18:00 +02:00
committed by GitHub
co-authored by Claude Opus 4.8
parent 2b5e33678c
commit e1ee772561
@@ -29,6 +29,7 @@ from homeassistant.components.light import (
ColorMode,
LightEntity,
LightEntityFeature,
LightEntityStateAttribute,
)
from homeassistant.const import CONF_HOST, CONF_NAME, CONF_PORT, CONF_TYPE, STATE_ON
from homeassistant.core import HomeAssistant
@@ -259,11 +260,15 @@ class LimitlessLEDGroup(LightEntity, RestoreEntity):
await super().async_added_to_hass()
if last_state := await self.async_get_last_state():
self._attr_is_on = last_state.state == STATE_ON
self._attr_brightness = last_state.attributes.get("brightness")
self._attr_brightness = last_state.attributes.get(
LightEntityStateAttribute.BRIGHTNESS
)
self._attr_color_temp_kelvin = last_state.attributes.get(
"color_temp_kelvin"
LightEntityStateAttribute.COLOR_TEMP_KELVIN
)
self._attr_hs_color = last_state.attributes.get(
LightEntityStateAttribute.HS_COLOR
)
self._attr_hs_color = last_state.attributes.get("hs_color")
@property
@override