From 019861416ee5b75264031ffca7d48aa10bf8e7a9 Mon Sep 17 00:00:00 2001 From: One Nose Date: Mon, 7 Aug 2023 00:35:25 +0300 Subject: [PATCH] fix(main): progress bar not working properly --- src/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.py b/src/main.py index c1f06ad..4e85d32 100644 --- a/src/main.py +++ b/src/main.py @@ -122,6 +122,7 @@ def create_datapack( total=6, bar_format='{l_bar}{bar:50}| {n_fmt}/{total_fmt}{postfix}', postfix='Preparing datapack...', + mininterval=0, ) as pbar: refresh_dir(path) @@ -239,6 +240,7 @@ def create_resourcepack( total=7, bar_format='{l_bar}{bar:50}| {n_fmt}/{total_fmt}{postfix}', postfix='Preparing resource pack...', + mininterval=0, ) as pbar: refresh_dir(path)