Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Bre77 committed Mar 2, 2024
1 parent 8759471 commit bcc69e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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.1.1",
version="0.1.2",
author="Brett Adams",
author_email="[email protected]",
description="Teslemetry Streaming API library for Python",
Expand Down
2 changes: 1 addition & 1 deletion teslemetry_stream/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ async def __anext__(self) -> dict:
datetime.strptime(main, "%Y-%m-%dT%H:%M:%S").timestamp()
) * 1000 + int(ns[:3])
LOGGER.debug("event %s", json.dumps(data))
return json.loads(line[5:])
return data
continue
except aiohttp.ClientConnectionError as error:
raise StopAsyncIteration from error
Expand Down

0 comments on commit bcc69e5

Please sign in to comment.