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()