File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed
Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ def __init__(self) -> None:
247247 # 'cooling_state' = on means cooling is active.
248248 ###################################################################
249249 self ._cooling_active = False
250- self ._cooling_enabled : bool
250+ self ._cooling_enabled = False
251251
252252 self .gateway_id : str
253253 self .gw_data : GatewayData = {}
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments