mirror of
https://github.com/home-assistant/core.git
synced 2026-07-14 10:03:52 +01: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"
|