Skip to content

Commit 8568d78

Browse files
PunkPangolinbbhtt
authored andcommitted
Add end-of-file newline for flatpak-pip-generator
1 parent 5fe25e6 commit 8568d78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pip/flatpak-pip-generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ def dict_representer(
605605
)
606606
yaml.dump(pypi_module, output, Dumper=OrderedDumper)
607607
else:
608-
output.write(json.dumps(pypi_module, indent=4))
608+
output.write(json.dumps(pypi_module, indent=4) + "\n")
609609
print(f"Output saved to {output_filename}")
610610

611611
if len(unresolved_dependencies_errors) != 0:

0 commit comments

Comments
 (0)