We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ce38ab commit 9bf35deCopy full SHA for 9bf35de
setup.py
@@ -5,7 +5,7 @@
5
6
setuptools.setup(
7
name="teslemetry_stream",
8
- version="0.5.5",
+ version="0.5.6",
9
author="Brett Adams",
10
author_email="hello@teslemetry.com",
11
description="Teslemetry Streaming API library for Python",
teslemetry_stream/vehicle.py
@@ -2,7 +2,6 @@
2
import asyncio
3
import logging
4
-from attr import dataclass
from .const import Signal
if TYPE_CHECKING:
@@ -51,9 +50,7 @@ async def update_config(self, config: dict) -> None:
51
50
52
# Lock so that we dont change the config while making the API call
53
async with self.lock:
54
- print(self._config)
55
self._config = merge(config, self._config)
56
57
58
await asyncio.sleep(1)
59
0 commit comments