Skip to content

Commit

Permalink
Add newlines to downloaded.json.
Browse files Browse the repository at this point in the history
This makes diffs easier to read at a glance.
  • Loading branch information
SeanCline committed Jan 21, 2023
1 parent 3dd2c06 commit 4d93260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysymsrv.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def save_downloaded_files_list(files, filename="downloaded.json"):
filelist = list(files)
filelist.sort()
with open(filename, "w") as fp:
json.dump(list(filelist), fp)
json.dump(list(filelist), fp, indent=0)


def download_pdbs_for_version(root, version, target_dir, already_downloaded_files):
Expand Down

0 comments on commit 4d93260

Please sign in to comment.