mirror of
https://github.com/home-assistant/core.git
synced 2026-05-26 18:26:25 +01:00
e11ffbcdaf
* Rework goalzero for EntityDescription * changes * fix * lint
13 lines
319 B
Python
13 lines
319 B
Python
"""Constants for the Goal Zero Yeti integration."""
|
|
from datetime import timedelta
|
|
|
|
ATTRIBUTION = "Data provided by Goal Zero"
|
|
ATTR_DEFAULT_ENABLED = "default_enabled"
|
|
|
|
DATA_KEY_COORDINATOR = "coordinator"
|
|
DOMAIN = "goalzero"
|
|
DEFAULT_NAME = "Yeti"
|
|
DATA_KEY_API = "api"
|
|
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=30)
|