Skip to content

Commit 9bf35de

Browse files
committed
remove prints
1 parent 5ce38ab commit 9bf35de

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-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="teslemetry_stream",
8-
version="0.5.5",
8+
version="0.5.6",
99
author="Brett Adams",
1010
author_email="hello@teslemetry.com",
1111
description="Teslemetry Streaming API library for Python",

teslemetry_stream/vehicle.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import asyncio
33
import logging
44

5-
from attr import dataclass
65
from .const import Signal
76

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

5251
# Lock so that we dont change the config while making the API call
5352
async with self.lock:
54-
print(self._config)
5553
self._config = merge(config, self._config)
56-
print(self._config)
5754

5855
await asyncio.sleep(1)
5956

0 commit comments

Comments
 (0)