1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-14 10:03:52 +01:00
Files

11 lines
243 B
Python

"""Constants for the image_processing component."""
from enum import StrEnum
class ImageProcessingEntityStateAttribute(StrEnum):
"""State attributes for image processing entities."""
FACES = "faces"
TOTAL_FACES = "total_faces"