There was an error while loading. Please reload this page.
1 parent 2dc157a commit aa96b37Copy full SHA for aa96b37
1 file changed
plugwise/smilecomm.py
@@ -42,7 +42,9 @@ def __init__(
42
if host.count(":") > 2: # pragma: no cover
43
host = f"[{host}]"
44
45
- self._base_header = {"Authorization": aiohttp.encode_basic_auth(username, password=password)}
+ self._base_header = {
46
+ "Authorization": aiohttp.encode_basic_auth(username, password=password)
47
+ }
48
self._endpoint = f"http://{host}:{str(port)}" # Sensitive
49
50
async def _request(
0 commit comments