Skip to content

Commit

Permalink
chore: Update json.dump to include indentation in submit-theme.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro-balades committed Aug 20, 2024
1 parent 9b8ff02 commit 23f0f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/submit-theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def main():
print("Detected preferences file. Please review the preferences below.")
print(prefs)
theme['preferences'] = get_static_asset(theme_id, PREFERENCES_FILE)
json.dump(prefs, f)
json.dump(prefs, f, indent=4)
else:
print("No preferences detected.")
os.remove(prefs_file)
Expand Down

0 comments on commit 23f0f0c

Please sign in to comment.