1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-14 01:54:11 +01:00
Files
epenet db484a0571 Migrate input_select entity attributes to StrEnum (#175757)
Co-authored-by: Franck Nijhof <git@frenck.dev>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-07-08 22:40:27 +02:00

10 lines
207 B
Python

"""Constants for the input_select integration."""
from enum import StrEnum
class InputSelectEntityStateAttribute(StrEnum):
"""State attributes for input select entities."""
EDITABLE = "editable"