mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 04:05:01 +01:00
466e28eae2
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
9 lines
205 B
Python
9 lines
205 B
Python
"""Constants for world clock component."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "worldclock"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
CONF_TIME_FORMAT = "time_format"
|
|
DEFAULT_TIME_STR_FORMAT = "%H:%M"
|