Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Bre77 committed Dec 11, 2024
1 parent 5ce38ab commit 9bf35de
Show file tree
Hide file tree
Showing 2 changed files with 1 addition 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="teslemetry_stream",
version="0.5.5",
version="0.5.6",
author="Brett Adams",
author_email="hello@teslemetry.com",
description="Teslemetry Streaming API library for Python",
Expand Down
3 changes: 0 additions & 3 deletions 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 attr import dataclass
from .const import Signal

if TYPE_CHECKING:
Expand Down Expand Up @@ -51,9 +50,7 @@ async def update_config(self, config: dict) -> None:

# Lock so that we dont change the config while making the API call
async with self.lock:
print(self._config)
self._config = merge(config, self._config)
print(self._config)

await asyncio.sleep(1)

Expand Down

0 comments on commit 9bf35de

Please sign in to comment.