Merge remote-tracking branch 'origin/develop' into xap

This commit is contained in:
QMK Bot
2024-01-16 06:14:29 +00:00
+2 -2
View File
@@ -92,8 +92,8 @@ def format_json(cli):
output = json.dumps(json_data, cls=json_encoder, sort_keys=True)
if cli.args.inplace:
with open(cli.args.json_file, 'w+', encoding='utf-8') as outfile:
outfile.write(output)
with open(cli.args.json_file, 'w+', encoding='utf-8', newline='\n') as outfile:
outfile.write(output + '\n')
# Display the results if print was set
# We don't operate in-place by default, so also display to stdout