Skip to content

Commit

Permalink
Don't add blank line at end of file.
Browse files Browse the repository at this point in the history
  • Loading branch information
AngieHinrichs committed Mar 20, 2023
1 parent 969f3ab commit 9c5fbcf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion deduplicate_keeping_first.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,4 @@
# Write back to file
with open('lineages.csv', 'w') as f:
f.writelines(d)
f.write('\n')

1 change: 0 additions & 1 deletion deduplicate_keeping_last.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,4 @@
# Write back to file
with open('lineages.csv', 'w') as f:
f.writelines(d)
f.write('\n')

0 comments on commit 9c5fbcf

Please sign in to comment.