Update cassette submodule & fix current_score.json generation (#4601)

* Update cassette submodule

* add a new line when building current_score.json
This commit is contained in:
merwanehamadi
2023-06-06 14:46:41 -07:00
committed by GitHub
parent 055806e124
commit 53efa8f6bf
2 changed files with 3 additions and 2 deletions

View File

@@ -40,4 +40,5 @@ for filename in glob.glob(new_score_filename_pattern):
sorted_data = recursive_sort_dict(merged_data)
with open(current_score_filename, "w") as f_current:
json.dump(sorted_data, f_current, indent=4)
json_data = json.dumps(sorted_data, indent=4)
f_current.write(json_data + "\n")