From 5501db96111cdb9e7630c8d81ea00cd761e02213 Mon Sep 17 00:00:00 2001 From: Jeremy Magland Date: Thu, 1 Aug 2024 16:57:41 -0400 Subject: [PATCH] Update file writing to include newline at end --- lindi/lindi1/_lindi1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lindi/lindi1/_lindi1.py b/lindi/lindi1/_lindi1.py index 0bce9f1..5db139f 100644 --- a/lindi/lindi1/_lindi1.py +++ b/lindi/lindi1/_lindi1.py @@ -174,4 +174,4 @@ def _create_empty_lindi_file(filename: str, create_binary: bool): f.write(b"\0" * lindi1_header['rfs_padding']) else: with open(filename, "w") as f: - json.dump(empty_rfs, f, indent=2) \ No newline at end of file + json.dump(empty_rfs, f, indent=2)