File tree 2 files changed +3
-2
lines changed
custom_components/localtuya/pytuya
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -925,7 +925,7 @@ def _decode_payload(self, payload):
925
925
payload = payload .decode ()
926
926
except Exception as ex :
927
927
self .debug ("payload was not string type and decoding failed" )
928
- raise DecodeError ("payload was not a string: %s" , ex )
928
+ raise DecodeError ("payload was not a string: %s" % ex )
929
929
# return self.error_json(ERR_JSON, payload)
930
930
931
931
if "data unvalid" in payload :
Original file line number Diff line number Diff line change @@ -176,7 +176,8 @@ disable=line-too-long,
176
176
dangerous-default-value,
177
177
unreachable,
178
178
unnecessary-pass,
179
- broad-except
179
+ broad-except,
180
+ raise-missing-from
180
181
181
182
# Enable the message, report, category or checker with the given id(s). You can
182
183
# either give multiple identifier separated by comma (,) or put this option
You can’t perform that action at this time.
0 commit comments