diff --git a/scripts/rebuild_themes.py b/scripts/rebuild_themes.py index 2ef4aed5..908c9e7e 100644 --- a/scripts/rebuild_themes.py +++ b/scripts/rebuild_themes.py @@ -44,7 +44,7 @@ def write_colors(colors_file, output_file): def main(): with open(THEMES_DATA_FILE, "w") as f: - json.dump({}, f, indent=4) + json.dump({}, f) for theme in os.listdir(THEMES_FOLDER): theme_folder = os.path.join(THEMES_FOLDER, theme) @@ -112,4 +112,4 @@ def main(): if __name__ == "__main__": - main() \ No newline at end of file + main()