mirror of
https://github.com/home-assistant/core.git
synced 2026-07-04 21:25:26 +01:00
11 lines
243 B
Python
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"
|