From 23f0f0c9e87c93522fdbacbf735c0bef4a552daa Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Tue, 20 Aug 2024 09:27:00 +0200 Subject: [PATCH] chore: Update json.dump to include indentation in submit-theme.py --- scripts/submit-theme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/submit-theme.py b/scripts/submit-theme.py index fcc58636..d161d2a3 100644 --- a/scripts/submit-theme.py +++ b/scripts/submit-theme.py @@ -175,7 +175,7 @@ Just joking, you can do whatever you want. You're the boss. 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)