From 2b2bb79505cd1a82274d30fc5d7310cda0a6b1db Mon Sep 17 00:00:00 2001 From: Andre Lengwenus Date: Sun, 23 Nov 2025 12:33:28 +0100 Subject: [PATCH] Add missing availability change (#157096) --- homeassistant/components/lcn/light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/lcn/light.py b/homeassistant/components/lcn/light.py index 1c6dcff836f..f5b0f8732a5 100644 --- a/homeassistant/components/lcn/light.py +++ b/homeassistant/components/lcn/light.py @@ -163,7 +163,7 @@ class LcnOutputLight(LcnEntity, LightEntity): or input_obj.get_output_id() != self.output.value ): return - + self._attr_available = True percent = input_obj.get_percent() self._attr_brightness = value_to_brightness(BRIGHTNESS_SCALE, percent) self._attr_is_on = bool(percent)