mirror of
https://github.com/home-assistant/core.git
synced 2025-05-08 16:09:22 +00:00
9 lines
230 B
Python
9 lines
230 B
Python
"""Constants for IPMA component."""
|
|
from homeassistant.components.weather import DOMAIN as WEATHER_DOMAIN
|
|
|
|
DOMAIN = "ipma"
|
|
|
|
HOME_LOCATION_NAME = "Home"
|
|
|
|
ENTITY_ID_SENSOR_FORMAT_HOME = f"{WEATHER_DOMAIN}.ipma_{HOME_LOCATION_NAME}"
|