Skip to content

Commit b2554ca

Browse files
committed
fix bad import
1 parent 78856ac commit b2554ca

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="tesla_fleet_api",
8-
version="0.7.6",
8+
version="0.7.7",
99
author="Brett Adams",
1010
author_email="[email protected]",
1111
description="Tesla Fleet API library for Python",

tesla_fleet_api/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from enum import Enum
44
import logging
55

6-
VERSION = "0.7.6"
6+
VERSION = "0.7.7"
77
LOGGER = logging.getLogger(__package__)
88
SERVERS = {
99
"na": "https://fleet-api.prd.na.vn.cloud.tesla.com",

tesla_fleet_api/energy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22
from typing import Any, TYPE_CHECKING
3-
from .const import Method, EnergyOperationMode, EnergyExportMode, TeslaEnergyKind, TeslaEnergyPeriod
3+
from .const import Method, EnergyOperationMode, EnergyExportMode, TeslaEnergyPeriod
44
from .energyspecific import EnergySpecific
55

66
if TYPE_CHECKING:

tesla_fleet_api/energyspecific.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22
from typing import Any, TYPE_CHECKING
3-
from .const import EnergyExportMode, EnergyOperationMode, TeslaEnergyKind, TeslaEnergyPeriod
3+
from .const import EnergyExportMode, EnergyOperationMode, TeslaEnergyPeriod
44

55
if TYPE_CHECKING:
66
from .energy import Energy

0 commit comments

Comments
 (0)