Skip to content

Commit bd02422

Browse files
Remove accidental trailing semicolons in Python code
1 parent 5b029aa commit bd02422

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contrib/zmq/zmq_sub3.4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def handle(self) :
5757
msg = yield from self.zmqSubSocket.recv_multipart()
5858
topic = msg[0]
5959
body = msg[1]
60-
sequence = "Unknown";
60+
sequence = "Unknown"
6161
if len(msg[-1]) == 4:
6262
msgSequence = struct.unpack('<I', msg[-1])[-1]
6363
sequence = str(msgSequence)

test/functional/importmulti.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ def run_test (self):
434434
address_assert = self.nodes[1].validateaddress(watchonly_address)
435435
assert_equal(address_assert['iswatchonly'], True)
436436
assert_equal(address_assert['ismine'], False)
437-
assert_equal(address_assert['timestamp'], watchonly_timestamp);
437+
assert_equal(address_assert['timestamp'], watchonly_timestamp)
438438

439439
# Bad or missing timestamps
440440
self.log.info("Should throw on invalid or missing timestamp values")

0 commit comments

Comments
 (0)