From 51b4f0f5f29ef0af7e523eae026f19793fac8941 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 13 Sep 2024 23:57:35 +0200 Subject: [PATCH] mypy/squashfs --- rwx/cmd/squashfs/__init__.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/rwx/cmd/squashfs/__init__.py b/rwx/cmd/squashfs/__init__.py index 3162b88..db603da 100644 --- a/rwx/cmd/squashfs/__init__.py +++ b/rwx/cmd/squashfs/__init__.py @@ -8,13 +8,11 @@ cmd.need("mksquashfs") def mksquashfs(input_root: str, output_file: str) -> None: """Make a SquashFS bootable image file.""" ps.run( - [ - "mksquashfs", - input_root, - output_file, - "-comp", - "zstd", - "-Xcompression-level", - str(18), - ] + "mksquashfs", + input_root, + output_file, + "-comp", + "zstd", + "-Xcompression-level", + str(18), )