9 lines
171 B
Python
9 lines
171 B
Python
"""Constants for the Holiday integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "holiday"
|
|
|
|
CONF_PROVINCE: Final = "province"
|
|
CONF_CATEGORIES: Final = "categories"
|