From 771bdfc9d0e690e58b063aa4a280167951d5e249 Mon Sep 17 00:00:00 2001 From: Harsh <115716485+Kaos599@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:25:47 +0530 Subject: [PATCH] Update uncompress.py --- pdfly/uncompress.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pdfly/uncompress.py b/pdfly/uncompress.py index 1376372..b7c00d3 100644 --- a/pdfly/uncompress.py +++ b/pdfly/uncompress.py @@ -34,7 +34,9 @@ def main(pdf: Path, output: Path) -> None: uncomp_size = output.stat().st_size print(f"Original Size : {orig_size:,}") - print(f"Uncompressed Size: {uncomp_size:,} ({(uncomp_size / orig_size) * 100:.1f}% of original)") + print( + f"Uncompressed Size: {uncomp_size:,} ({(uncomp_size / orig_size) * 100:.1f}% of original)" + ) def decompress_content_stream(content: IndirectObject) -> None: