Skip to content

Commit 61c1150

Browse files
committed
minor
1 parent 13526d3 commit 61c1150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extras/serial_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def on_request(self, msg_id, command, args):
2525
result = self.callbacks[command](*args)
2626
return [RESPONSE, msg_id, None, result]
2727
except Exception as e:
28-
return [RESPONSE, msg_id, [GENERIC_EXCEPTION, str(e)] ,None]
28+
return [RESPONSE, msg_id, [GENERIC_EXCEPTION, str(e)], None]
2929

3030
def on_notify(self, command, args):
3131
"""Execute the callback"""

0 commit comments

Comments
 (0)