Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Local Calendar integration."""
2 
3 DOMAIN = "local_calendar"
4 
5 CONF_CALENDAR_NAME = "calendar_name"
6 CONF_ICS_FILE = "ics_file"
7 CONF_IMPORT = "import"
8 CONF_STORAGE_KEY = "storage_key"
9 
10 ATTR_CREATE_EMPTY = "create_empty"
11 ATTR_IMPORT_ICS_FILE = "import_ics_file"
12 
13 STORAGE_PATH = ".storage/local_calendar.{key}.ics"