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 0100084 commit 22d9d99Copy full SHA for 22d9d99
custom_components/luxtronik/common.py
@@ -98,12 +98,12 @@ def correct_key_value(
98
# region Workaround Detect passive cooling operation mode
99
if (
100
sensor_id == LC.C0080_STATUS
101
- and value == LuxOperationMode.no_request
102
- and bool(get_sensor_data(sensors,LC.C0119_STATUS_LINE_3) == 'cooling')
+ and value == LuxOperationMode.no_request
+ and bool(get_sensor_data(sensors, LC.C0119_STATUS_LINE_3) == "cooling")
103
):
104
return LuxOperationMode.cooling
105
# endregion Workaround Detect passive cooling operation mode
106
-
+
107
return value
108
109
0 commit comments