Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Goal Zero Yeti integration."""
2 
3 import logging
4 from typing import Final
5 
6 ATTRIBUTION = "Data provided by Goal Zero"
7 ATTR_DEFAULT_ENABLED = "default_enabled"
8 
9 DOMAIN: Final = "goalzero"
10 DEFAULT_NAME = "Yeti"
11 MANUFACTURER = "Goal Zero"
12 
13 LOGGER = logging.getLogger(__name__)