Commit 10de298c authored by Stefan Behnel's avatar Stefan Behnel

readability fix

parent 33f8fe4e
...@@ -402,7 +402,7 @@ def flatten_parallel_assignments(input, output): ...@@ -402,7 +402,7 @@ def flatten_parallel_assignments(input, output):
% (rhs_size, (rhs_size != 1) and 's' or '')) % (rhs_size, (rhs_size != 1) and 's' or ''))
output.append([lhs,rhs]) output.append([lhs,rhs])
continue continue
elif starred_targets == 1: elif starred_targets:
map_starred_assignment(lhs_targets, starred_assignments, map_starred_assignment(lhs_targets, starred_assignments,
lhs.args, rhs.args) lhs.args, rhs.args)
elif lhs_size < rhs_size: elif lhs_size < rhs_size:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment