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 18a2da9 commit c8436efCopy full SHA for c8436ef
plugwise/helper.py
@@ -78,6 +78,7 @@ def __init__(self) -> None:
78
self._loc_data: dict[str, ThermoLoc]
79
self._schedule_old_states: dict[str, dict[str, str]]
80
self._gateway_id: str = NONE
81
+ self.gw_entities: dict[str, GwEntityData]
82
self.smile_hw_version: str | None
83
self.smile_mac_address: str | None
84
self.smile_model: str
plugwise/smilecomm.py
@@ -43,7 +43,7 @@ def __init__(
43
host = f"[{host}]"
44
45
self._auth = BasicAuth(username, password=password)
46
- self._endpoint = f"http://{host}:{str(port)}" # Sensitive
+ self._endpoint = f"http://{host}:{str(port)}" # Sensitive
47
48
async def _request(
49
self,
0 commit comments