mirror of
https://github.com/home-assistant/core.git
synced 2026-07-14 10:03:52 +01:00
10 lines
201 B
Python
10 lines
201 B
Python
"""Constants for the input_text integration."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class InputTextEntityStateAttribute(StrEnum):
|
|
"""State attributes for input text entities."""
|
|
|
|
EDITABLE = "editable"
|