Files
core/homeassistant/components/geo_location/const.py
T
2026-07-12 20:53:10 +02:00

21 lines
654 B
Python

"""Constants for the geo_location component."""
from enum import StrEnum
from homeassistant.helpers.deprecation import EnumWithDeprecatedMembers
class GeolocationEntityStateAttribute(
StrEnum,
metaclass=EnumWithDeprecatedMembers,
deprecated={
"LATITUDE": ("EntityStateAttribute.LATITUDE", "2027.2.0"),
"LONGITUDE": ("EntityStateAttribute.LONGITUDE", "2027.2.0"),
},
):
"""State attributes for geolocation entities."""
SOURCE = "source"
LATITUDE = "latitude" # Deprecated, replaced with EntityStateAttribute.LATITUDE
LONGITUDE = "longitude" # Deprecated, replaced with EntityStateAttribute.LONGITUDE