mirror of https://github.com/home-assistant/core
15 lines
320 B
Python
15 lines
320 B
Python
"""Constants in smhi component."""
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.components.weather import DOMAIN as WEATHER_DOMAIN
|
|
|
|
ATTR_SMHI_THUNDER_PROBABILITY: Final = "thunder_probability"
|
|
|
|
DOMAIN = "smhi"
|
|
|
|
HOME_LOCATION_NAME = "Home"
|
|
DEFAULT_NAME = "Weather"
|
|
|
|
ENTITY_ID_SENSOR_FORMAT = WEATHER_DOMAIN + ".smhi_{}"
|