Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

Commit

Permalink
Ran pep8
Browse files Browse the repository at this point in the history
Shouldn't print empty lines on the individual experiments anymore
  • Loading branch information
jbraiuka committed Jan 15, 2016
1 parent 2af93a9 commit 4c175c0
Show file tree
Hide file tree
Showing 3 changed files with 455 additions and 434 deletions.
5 changes: 4 additions & 1 deletion TimestreamAudit.py
Expand Up @@ -351,7 +351,10 @@ def output_by_experiment(ordered_dict, input_directory):
row.append(perc)
else:
row.append("")
output.append(row)
for item in row[1:]:
if item != "":
output.append(row)
break
output = sorted(output)
for line in output:
writer.writerow(line)
Expand Down

0 comments on commit 4c175c0

Please sign in to comment.