hass-core/homeassistant/components/stookalert/const.py
Ville Skyttä 053c456199
Change device entry type to an StrEnum (#59940)
Co-authored-by: Ville Skyttä <ville.skytta@iki.fi>
Co-authored-by: Franck Nijhof <git@frenck.dev>
2021-11-22 18:14:15 +01:00

23 lines
426 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",
)