From 058eec114b4c1508d242e227b3d413c7c0989edc Mon Sep 17 00:00:00 2001 From: Martin Hjelmare Date: Mon, 19 Feb 2024 16:02:27 +0100 Subject: [PATCH] Freeze light profiles for further development (#110946) --- homeassistant/components/light/__init__.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/light/__init__.py b/homeassistant/components/light/__init__.py index 28f34e2eec0..fc02b3f49a2 100644 --- a/homeassistant/components/light/__init__.py +++ b/homeassistant/components/light/__init__.py @@ -694,7 +694,11 @@ def _coerce_none(value: str) -> None: @dataclasses.dataclass class Profile: - """Representation of a profile.""" + """Representation of a profile. + + The light profiles feature is in a frozen development state + until otherwise decided in an architecture discussion. + """ name: str color_x: float | None = dataclasses.field(repr=False) @@ -742,7 +746,11 @@ class Profile: class Profiles: - """Representation of available color profiles.""" + """Representation of available color profiles. + + The light profiles feature is in a frozen development state + until otherwise decided in an architecture discussion. + """ def __init__(self, hass: HomeAssistant) -> None: """Initialize profiles."""