1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-30 04:05:01 +01:00
Files
core/homeassistant/components/worldclock/const.py
T
SeifEddineMezned 466e28eae2 worldclock: Remove name field from config flow (#169000)
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-05-24 18:20:58 +02:00

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"