From a3301572e13ce71e83e731ad6a703e85dc712a57 Mon Sep 17 00:00:00 2001 From: Starnakin Date: Tue, 15 Apr 2025 00:34:01 +0200 Subject: [PATCH] fix: text --- tools/copy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/copy.py b/tools/copy.py index fec859a..da935c1 100644 --- a/tools/copy.py +++ b/tools/copy.py @@ -18,7 +18,7 @@ def main(): input_folder, output_folder = argument_parsing() files: list[str] = [os.path.join(input_folder, f) for f in os.listdir(input_folder)] files = [f for f in files if os.path.isfile(f)] - with Bar("generating...", max=len(files)) as bar: + with Bar("copying...", max=len(files)) as bar: for file in files: with open(file, 'rb') as f: image_data = f.read()