core/homeassistant/components/goalzero/const.py

13 lines
292 B
Python
Raw Normal View History

"""Constants for the Goal Zero Yeti integration."""
2022-06-05 01:50:38 +00:00
import logging
from typing import Final
ATTRIBUTION = "Data provided by Goal Zero"
ATTR_DEFAULT_ENABLED = "default_enabled"
2022-06-05 01:50:38 +00:00
DOMAIN: Final = "goalzero"
DEFAULT_NAME = "Yeti"
MANUFACTURER = "Goal Zero"
2022-06-05 01:50:38 +00:00
LOGGER = logging.getLogger(__name__)