Freeze light profiles for further development (#110946)

pull/110953/head^2
Martin Hjelmare 2024-02-19 16:02:27 +01:00 committed by GitHub
parent 3a4c6fc7f3
commit 058eec114b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 2 deletions

View File

@ -694,7 +694,11 @@ def _coerce_none(value: str) -> None:
@dataclasses.dataclass @dataclasses.dataclass
class Profile: 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 name: str
color_x: float | None = dataclasses.field(repr=False) color_x: float | None = dataclasses.field(repr=False)
@ -742,7 +746,11 @@ class Profile:
class Profiles: 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: def __init__(self, hass: HomeAssistant) -> None:
"""Initialize profiles.""" """Initialize profiles."""