From 2f80e3033631e356ddc9b4de15732beeece39d28 Mon Sep 17 00:00:00 2001 From: Brett Adams Date: Mon, 5 Feb 2024 17:58:48 +1000 Subject: [PATCH] Fix import --- custom_components/teslemetry/coordinator.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom_components/teslemetry/coordinator.py b/custom_components/teslemetry/coordinator.py index de06a91..f31cc11 100644 --- a/custom_components/teslemetry/coordinator.py +++ b/custom_components/teslemetry/coordinator.py @@ -2,7 +2,8 @@ from datetime import timedelta from typing import Any -from tesla_fleet_api import EnergySpecific, VehicleSpecific, VehicleDataEndpoints +from tesla_fleet_api import EnergySpecific, VehicleSpecific +from tesla_fleet_api.const import VehicleDataEndpoints from tesla_fleet_api.exceptions import TeslaFleetError, VehicleOffline from homeassistant.core import HomeAssistant