Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Stookalert integration."""
2 
3 import logging
4 from typing import Final
5 
6 DOMAIN: Final = "stookalert"
7 LOGGER = logging.getLogger(__package__)
8 
9 CONF_PROVINCE: Final = "province"
10 
11 PROVINCES: Final = (
12  "Drenthe",
13  "Flevoland",
14  "Friesland",
15  "Gelderland",
16  "Groningen",
17  "Limburg",
18  "Noord-Brabant",
19  "Noord-Holland",
20  "Overijssel",
21  "Utrecht",
22  "Zeeland",
23  "Zuid-Holland",
24 )