Skip to content

Commit

Permalink
sort keys
Browse files Browse the repository at this point in the history
  • Loading branch information
XDelta committed Nov 17, 2023
1 parent 5d3600c commit 2542158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
# Write the manifest.json
try:
with open("manifest.json", "w") as manifest_file:
json.dump(manifest, manifest_file, indent=4, separators=(',', ': '))
json.dump(manifest, manifest_file, indent=4, separators=(',', ': '), sort_keys=True)
print("manifest.json created successfully")
except Exception as e:
print(f"Error writing manifest.json: {e}")
Expand Down

0 comments on commit 2542158

Please sign in to comment.