more updates

This commit is contained in:
2024-12-12 13:06:47 -06:00
parent 4b037fb18c
commit 96da3d2793

View File

@@ -70,7 +70,7 @@ def split_zip(input_zip_path, output_folder, max_group_size):
with BytesIO(source_zip.read(member)) as file_content:
# Check if adding this file would exceed the maximum group size
if (group_size + len(file_content.getvalue())) > max_group_size:
print(f'{file_name}-group_{group_number}.zip done.', end="\r")
print(f'\r{file_name}-group_{group_number}.zip done.', end="\n")
group_number += 1
group_size = 0
# i = 0