Skip to content

Commit aa96b37

Browse files
committed
Ruffed
1 parent 2dc157a commit aa96b37

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

plugwise/smilecomm.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ def __init__(
4242
if host.count(":") > 2: # pragma: no cover
4343
host = f"[{host}]"
4444

45-
self._base_header = {"Authorization": aiohttp.encode_basic_auth(username, password=password)}
45+
self._base_header = {
46+
"Authorization": aiohttp.encode_basic_auth(username, password=password)
47+
}
4648
self._endpoint = f"http://{host}:{str(port)}" # Sensitive
4749

4850
async def _request(

0 commit comments

Comments
 (0)