1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/efergy/const.py
Robert Hillis 09944d936d
Clean up Efergy (#67755)
* Clean up Efergy

* tweak
2022-03-11 20:29:18 -08:00

14 lines
296 B
Python

"""Constants for the Efergy integration."""
from datetime import timedelta
import logging
from typing import Final
CONF_CURRENT_VALUES = "current_values"
DEFAULT_NAME = "Efergy"
DOMAIN: Final = "efergy"
LOGGER = logging.getLogger(__package__)
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=30)