Skip to content

Commit de02e71

Browse files
committed
fix undeclared variable
1 parent 3b12816 commit de02e71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

blocksequence/utils/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def order_blocks(ctx, pid, cid):
111111

112112
# calculate the block order
113113
logger.debug("Calculating the block order")
114-
edge_sequence = edge_sequence.groupby(pid, sort=True).apply(sub_block_order, {key:cid})
114+
edge_sequence = edge_sequence.groupby(pid, sort=True).apply(sub_block_order, {'key':cid})
115115

116116
# calculate the edge order within the blocks
117117
logger.debug("Calculating edge order")

0 commit comments

Comments
 (0)