From 40f7c04004737b815e8810a6eeb615a925e15b8c Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Wed, 25 Jan 2023 14:56:44 +0200 Subject: [PATCH] add counter comment --- find_duplicate_files/find_duplicate_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/find_duplicate_files/find_duplicate_files.py b/find_duplicate_files/find_duplicate_files.py index 90f64c8..047366e 100644 --- a/find_duplicate_files/find_duplicate_files.py +++ b/find_duplicate_files/find_duplicate_files.py @@ -37,7 +37,7 @@ class find_duplicate_files: count = 0 for hash in first_files: count += 1 - print(f"{count}/{total}") + print(f"# Checking file {count} of {total}") if hash in second_files: print(f"#File '{first_files[hash]}' is dupe with '{second_files[hash]}'.") print(f"rm '{first_files[hash]}'")