We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f36eec commit 53f9867Copy full SHA for 53f9867
custom_components/daikin_onecta/climate.py
@@ -265,6 +265,8 @@ def get_max_temp(self):
265
setpointdict = self.setpoint()
266
if setpointdict is not None:
267
max_temp = setpointdict["maxValue"]
268
+ else:
269
+ max_temp = super().max_temp
270
_LOGGER.info(
271
"Device '%s': %s max temperature '%s'",
272
self._device.name,
@@ -278,6 +280,8 @@ def get_min_temp(self):
278
280
279
281
282
min_temp = setpointdict["minValue"]
283
284
+ min_temp = super().min_temp
285
286
"Device '%s': %s min temperature '%s'",
287
0 commit comments