mirror of
https://github.com/home-assistant/core.git
synced 2026-06-02 13:44:32 +01:00
831c87205f
Co-authored-by: J. Nick Koston <nick@koston.org>
12 lines
275 B
Python
12 lines
275 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}"
|
|
|
|
DATA_LOCATION = "location"
|
|
DATA_API = "api"
|