Update deprecated methods and types

This commit is contained in:
2024-11-12 19:33:43 +01:00
parent ad77edd103
commit f7d801e1f4
3 changed files with 4 additions and 14 deletions

View File

@@ -3,7 +3,7 @@
import logging
from typing import Any, Mapping
from homeassistant.components.device_tracker.const import DOMAIN, SOURCE_TYPE_GPS
from homeassistant.components.device_tracker.const import DOMAIN, SourceType
from homeassistant.components.device_tracker.config_entry import TrackerEntity
from homeassistant.helpers.update_coordinator import (
@@ -78,7 +78,7 @@ class GeoRideTrackerEntity(CoordinatorEntity, TrackerEntity):
@property
def source_type(self):
"""Return the source type, eg gps or router, of the device."""
return SOURCE_TYPE_GPS
return SourceType.GPS
@property
def location_accuracy(self):