Skip to content

Commit

Permalink
fix bad import
Browse files Browse the repository at this point in the history
  • Loading branch information
Bre77 committed Sep 16, 2024
1 parent 78856ac commit b2554ca
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="tesla_fleet_api",
version="0.7.6",
version="0.7.7",
author="Brett Adams",
author_email="[email protected]",
description="Tesla Fleet API library for Python",
Expand Down
2 changes: 1 addition & 1 deletion tesla_fleet_api/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from enum import Enum
import logging

VERSION = "0.7.6"
VERSION = "0.7.7"
LOGGER = logging.getLogger(__package__)
SERVERS = {
"na": "https://fleet-api.prd.na.vn.cloud.tesla.com",
Expand Down
2 changes: 1 addition & 1 deletion tesla_fleet_api/energy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations
from typing import Any, TYPE_CHECKING
from .const import Method, EnergyOperationMode, EnergyExportMode, TeslaEnergyKind, TeslaEnergyPeriod
from .const import Method, EnergyOperationMode, EnergyExportMode, TeslaEnergyPeriod
from .energyspecific import EnergySpecific

if TYPE_CHECKING:
Expand Down
2 changes: 1 addition & 1 deletion tesla_fleet_api/energyspecific.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations
from typing import Any, TYPE_CHECKING
from .const import EnergyExportMode, EnergyOperationMode, TeslaEnergyKind, TeslaEnergyPeriod
from .const import EnergyExportMode, EnergyOperationMode, TeslaEnergyPeriod

if TYPE_CHECKING:
from .energy import Energy
Expand Down

0 comments on commit b2554ca

Please sign in to comment.