fix: text

This commit is contained in:
Starnakin 2025-04-15 00:34:01 +02:00
parent b73f374625
commit a3301572e1

View File

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