We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 547a4b6 commit 23b97eaCopy full SHA for 23b97ea
generateGraph.py
@@ -85,7 +85,7 @@ def main(command=[]):
85
graph = create_graph_repos()
86
if graph is not None and len(graph["nodes"]) > 0:
87
with open(DATA_FILE, 'w') as f:
88
- json.dump(graph, f)
+ json.dump(graph, f, indent=1, sort_keys=True)
89
else:
90
raise ValueError("Empty graph generated")
91
update_timestamp()
0 commit comments