mirror of
https://github.com/home-assistant/core.git
synced 2026-07-15 02:23:47 +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"
|