From 980c966e532675d115f2a049d222f8f23ee54420 Mon Sep 17 00:00:00 2001 From: Zen <46526140+master-of-zen@users.noreply.github.com> Date: Sat, 25 Jul 2020 15:52:06 +0300 Subject: [PATCH] better smoothing for bar --- Av1an/bar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Av1an/bar.py b/Av1an/bar.py index 431ab43..8fd6f25 100755 --- a/Av1an/bar.py +++ b/Av1an/bar.py @@ -22,7 +22,7 @@ class Counter(): self.first_update = True self.initial = initial self.left = total - initial - self.tqdm_bar = tqdm(total=self.left, initial=0, dynamic_ncols=True, unit="fr", leave=True, smoothing=0.2) + self.tqdm_bar = tqdm(total=self.left, initial=0, dynamic_ncols=True, unit="fr", leave=True, smoothing=0.01) def update(self, value): if self.first_update: