Skip to content

Commit

Permalink
Enumerate
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelduchesne committed Mar 16, 2020
1 parent bb12993 commit d0b813b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archetypal/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def _write_invalid(res):

if invalid_runs:
invalid = []
for i, k, v in enumerate(invalid_runs.items()):
for i, (k, v) in enumerate(invalid_runs.items()):
invalid.append({"#": i, "Filename": k.basename(), "Error": invalid_runs[k]})
filename = Path("failed_reduce.txt")
with open(filename, "w") as failures:
Expand Down

0 comments on commit d0b813b

Please sign in to comment.