Skip to content

Commit 12d576c

Browse files
committed
Remove timeout as Smile input altogether
1 parent d374c10 commit 12d576c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

plugwise/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,13 @@ def __init__(
4747
password: str,
4848
websession: aiohttp.ClientSession,
4949
port: int = DEFAULT_PORT,
50-
timeout = DEFAULT_LEGACY_TIMEOUT,
5150
username: str = DEFAULT_USERNAME,
5251
) -> None:
5352
"""Set the constructor for this class."""
5453
self._host = host
5554
self._password = password
5655
self._port = port
57-
self._timeout = timeout
56+
self._timeout = DEFAULT_LEGACY_TIMEOUT
5857
self._username = username
5958
self._websession = websession
6059
super().__init__(

0 commit comments

Comments
 (0)