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 13526d3 commit 61c1150Copy full SHA for 61c1150
extras/serial_server.py
@@ -25,7 +25,7 @@ def on_request(self, msg_id, command, args):
25
result = self.callbacks[command](*args)
26
return [RESPONSE, msg_id, None, result]
27
except Exception as e:
28
- return [RESPONSE, msg_id, [GENERIC_EXCEPTION, str(e)] ,None]
+ return [RESPONSE, msg_id, [GENERIC_EXCEPTION, str(e)], None]
29
30
def on_notify(self, command, args):
31
"""Execute the callback"""
0 commit comments