Respond to review feedback

This commit is contained in:
Daniel Gallagher 2017-06-23 14:58:24 -07:00
parent 4af7451154
commit b941d0e6df
4 changed files with 9 additions and 14 deletions

View file

@ -18,7 +18,7 @@ FAIL = 1
def sort_file_contents(f):
before = [line for line in f]
before = list(f)
after = sorted(before)
before_string = b''.join(before)