mirror of
https://github.com/home-assistant/core.git
synced 2026-08-28 10:16:02 -05:00
10 lines
210 B
Python
10 lines
210 B
Python
"""Constants for the input_boolean integration."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class InputBooleanEntityStateAttribute(StrEnum):
|
|
"""State attributes for input boolean entities."""
|
|
|
|
EDITABLE = "editable"
|