diff --git a/docs/collect-sections.py b/docs/collect-sections.py index 07bc5f6..658b1b0 100755 --- a/docs/collect-sections.py +++ b/docs/collect-sections.py @@ -132,8 +132,5 @@ if __name__ == "__main__": # print the sections to a json file with open(outfile, "w") as f: json.dump( - {name: section.to_json() for name, section in sections.items()}, - f, - indent=2, - sort_keys=True, + {name: section.to_json() for name, section in sections.items()}, f, indent=2, sort_keys=True )