From fd512229ef52ca0a851dcce2cfa35f714a826717 Mon Sep 17 00:00:00 2001 From: aryeg Date: Sun, 11 Jan 2026 10:36:59 +0200 Subject: [PATCH] Remove print in compact which is not protected under verbose flag and is duplicated with the prints upon creation --- src/littlefs/__main__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/littlefs/__main__.py b/src/littlefs/__main__.py index d237aca..4c021eb 100644 --- a/src/littlefs/__main__.py +++ b/src/littlefs/__main__.py @@ -106,7 +106,6 @@ def create(parser: argparse.ArgumentParser, args: argparse.Namespace) -> int: compact_fs.makedirs(root + _dir, exist_ok=True) for file in files: path = root + file - print(path) with fs.open(path, "rb") as src, compact_fs.open(path, "wb") as dest: dest.write(src.read()) compact_fs.fs_grow(args.block_count)