Skip to content

Commit ce19bea

Browse files
committed
Update common.py
bugfix
1 parent 2a0b38b commit ce19bea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/luxtronik/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def correct_key_value(
8585
LC.C0100_ERROR_REASON,
8686
# LP.P0716_0720_SWITCHOFF_REASON,
8787
]
88-
and ((value == -1) OR (value == "-1"))
88+
and ((value == -1) or (value == "-1"))
8989
):
9090
value = "Minus_1"
9191

0 commit comments

Comments
 (0)