Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Bre77 committed Dec 5, 2024
1 parent 7be3f0c commit 03c8789
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 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="teslemetry_stream",
version="0.5.0",
version="0.5.1",
author="Brett Adams",
author_email="hello@teslemetry.com",
description="Teslemetry Streaming API library for Python",
Expand Down
2 changes: 1 addition & 1 deletion teslemetry_stream/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import logging
from datetime import datetime, timezone
from .vehicle import TeslemetryStreamVehicle
from .exceptions import TeslemetryStreamEnded
from .exception import TeslemetryStreamEnded

DELAY = 1
LOGGER = logging.getLogger(__package__)
Expand Down
1 change: 0 additions & 1 deletion teslemetry_stream/vehicle.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import asyncio
import logging
from .const import TelemetryFields
from encodings import undefined

if TYPE_CHECKING:
from .stream import TeslemetryStream
Expand Down

0 comments on commit 03c8789

Please sign in to comment.