Skip to content

Commit c8436ef

Browse files
committed
Init gw_entities in helper.py
1 parent 18a2da9 commit c8436ef

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

plugwise/helper.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def __init__(self) -> None:
7878
self._loc_data: dict[str, ThermoLoc]
7979
self._schedule_old_states: dict[str, dict[str, str]]
8080
self._gateway_id: str = NONE
81+
self.gw_entities: dict[str, GwEntityData]
8182
self.smile_hw_version: str | None
8283
self.smile_mac_address: str | None
8384
self.smile_model: str

plugwise/smilecomm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(
4343
host = f"[{host}]"
4444

4545
self._auth = BasicAuth(username, password=password)
46-
self._endpoint = f"http://{host}:{str(port)}" # Sensitive
46+
self._endpoint = f"http://{host}:{str(port)}" # Sensitive
4747

4848
async def _request(
4949
self,

0 commit comments

Comments
 (0)