Remove redundant semicolons in Python code

This commit is contained in:
practicalswift
2017-01-20 22:55:26 +01:00
parent 82274c02ed
commit 5cdf10611f
8 changed files with 16 additions and 16 deletions

View File

@@ -22,7 +22,7 @@ try:
msg = zmqSubSocket.recv_multipart()
topic = str(msg[0])
body = msg[1]
sequence = "Unknown";
sequence = "Unknown"
if len(msg[-1]) == 4:
msgSequence = struct.unpack('<I', msg[-1])[-1]
sequence = str(msgSequence)