28 lines
488 B
Python
28 lines
488 B
Python
"""Constants for the Islamic Prayer component."""
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "islamic_prayer_times"
|
|
NAME: Final = "Islamic Prayer Times"
|
|
|
|
CONF_CALC_METHOD: Final = "calculation_method"
|
|
|
|
CALC_METHODS: Final = [
|
|
"jafari",
|
|
"karachi",
|
|
"isna",
|
|
"mwl",
|
|
"makkah",
|
|
"egypt",
|
|
"tehran",
|
|
"gulf",
|
|
"kuwait",
|
|
"qatar",
|
|
"singapore",
|
|
"france",
|
|
"turkey",
|
|
"russia",
|
|
"moonsighting",
|
|
"custom",
|
|
]
|
|
DEFAULT_CALC_METHOD: Final = "isna"
|