hass-core/homeassistant/components/nordpool/const.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
257 B
Python
Raw Normal View History

2024-11-08 15:10:51 +01:00
"""Constants for Nord Pool."""
import logging
from homeassistant.const import Platform
LOGGER = logging.getLogger(__package__)
DEFAULT_SCAN_INTERVAL = 60
DOMAIN = "nordpool"
PLATFORMS = [Platform.SENSOR]
DEFAULT_NAME = "Nord Pool"
CONF_AREAS = "areas"