mirror of
https://github.com/home-assistant/core.git
synced 2026-09-09 07:01:41 +01:00
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
21 lines
654 B
Python
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
|