mirror of
https://github.com/home-assistant/core.git
synced 2026-07-15 02:23:47 +01:00
11 lines
231 B
Python
11 lines
231 B
Python
"""Constants for the input_number integration."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class InputNumberEntityStateAttribute(StrEnum):
|
|
"""State attributes for input number entities."""
|
|
|
|
INITIAL = "initial"
|
|
EDITABLE = "editable"
|