1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/stookalert/const.py

26 lines
465 B
Python

"""Constants for the Stookalert integration."""
import logging
from typing import Final
DOMAIN: Final = "stookalert"
LOGGER = logging.getLogger(__package__)
CONF_PROVINCE: Final = "province"
PROVINCES: Final = (
"Drenthe",
"Flevoland",
"Friesland",
"Gelderland",
"Groningen",
"Limburg",
"Noord-Brabant",
"Noord-Holland",
"Overijssel",
"Utrecht",
"Zeeland",
"Zuid-Holland",
)
ENTRY_TYPE_SERVICE: Final = "service"