Skip to content

Commit f55dfde

Browse files
committed
Revert adding self._cooling_enabled at top-level
1 parent 161f5db commit f55dfde

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

plugwise/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ def __init__(
6565
self._websession,
6666
)
6767

68-
self._cooling_enabled = False
6968
self._cooling_present = False
7069
self._elga = False
7170
self._is_thermostat = False
@@ -131,7 +130,6 @@ async def connect(self) -> Version | None:
131130
self._password,
132131
self._request,
133132
self._websession,
134-
self._cooling_enabled,
135133
self._cooling_present,
136134
self._elga,
137135
self._is_thermostat,

plugwise/smile.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ def __init__(
4949
password: str,
5050
request: Callable[..., Awaitable[Any]],
5151
websession: aiohttp.ClientSession,
52-
_cooling_enabled: bool,
5352
_cooling_present: bool,
5453
_elga: bool,
5554
_is_thermostat: bool,
@@ -72,7 +71,6 @@ def __init__(
7271
username: str = DEFAULT_USERNAME,
7372
) -> None:
7473
"""Set the constructor for this class."""
75-
self._cooling_enabled = _cooling_enabled
7674
self._cooling_present = _cooling_present
7775
self._elga = _elga
7876
self._heater_id: str

0 commit comments

Comments
 (0)