retroarch: fix editorconfig error on hashes.json

This commit is contained in:
Thiago Kenji Okada 2021-11-16 17:29:16 -03:00
parent 71fb85952d
commit bf93ad6b39
2 changed files with 2 additions and 1 deletions

View file

@ -129,6 +129,7 @@ def main():
info(f"Generating '{HASHES_PATH}'...") info(f"Generating '{HASHES_PATH}'...")
with open(HASHES_PATH, "w") as f: with open(HASHES_PATH, "w") as f:
f.write(json.dumps(repo_hashes, indent=4)) f.write(json.dumps(repo_hashes, indent=4))
f.write("\n")
info("Finished!") info("Finished!")