Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Commit 55ab58d

Browse files
committed
move type hint of for cycle on the same line
1 parent 014ad9f commit 55ab58d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

iota/transaction/creation.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,8 +340,7 @@ def finalize(self):
340340
sponge = Kerl()
341341
last_index = len(self) - 1
342342

343-
# type: Tuple[int, ProposedTransaction]
344-
for (i, txn) in enumerate(self):
343+
for (i, txn) in enumerate(self): # type: Tuple[int, ProposedTransaction]
345344
txn.current_index = i
346345
txn.last_index = last_index
347346

0 commit comments

Comments
 (0)