We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ceee51 commit f0680bcCopy full SHA for f0680bc
1 file changed
github.py
@@ -37,7 +37,7 @@ def load(self, filepath):
37
38
def save(self, filepath):
39
with open(filepath, 'w') as f:
40
- return json.dump(self._json, f)
+ return json.dump(self._json, f, sort_keys=True, indent=4)
41
42
def download(self, query):
43
"""
0 commit comments