Dont indent themes.json

This commit is contained in:
mr. m 2025-05-29 18:08:55 +02:00 committed by GitHub
parent 95df5583f6
commit 80d5e2506a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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()
main()