mirror of
https://github.com/home-assistant/core.git
synced 2026-08-07 05:46:41 +01:00
14 lines
283 B
Python
14 lines
283 B
Python
"""Constants for the counter integration."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class CounterEntityStateAttribute(StrEnum):
|
|
"""State attributes for counter entities."""
|
|
|
|
EDITABLE = "editable"
|
|
INITIAL = "initial"
|
|
STEP = "step"
|
|
MINIMUM = "minimum"
|
|
MAXIMUM = "maximum"
|