summaryrefslogtreecommitdiff
path: root/robusta_krr/utils
diff options
context:
space:
mode:
authorLeaveMyYard <33721692+LeaveMyYard@users.noreply.github.com>2023-07-25 12:14:23 +0300
committerLeaveMyYard <33721692+LeaveMyYard@users.noreply.github.com>2023-07-25 12:14:23 +0300
commitf4bb8885a2f9724f667712f581e20d66e7e2e307 (patch)
treeaeff70887fccd871fb58da831e632d24c06a14c4 /robusta_krr/utils
parentb21f25242016957fac7f4a1fbd917846c4e324ab (diff)
Fix progressbar
Diffstat (limited to 'robusta_krr/utils')
-rw-r--r--robusta_krr/utils/progress_bar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/robusta_krr/utils/progress_bar.py b/robusta_krr/utils/progress_bar.py
index 621dc18..32bf211 100644
--- a/robusta_krr/utils/progress_bar.py
+++ b/robusta_krr/utils/progress_bar.py
@@ -14,7 +14,7 @@ class ProgressBar(Configurable):
def __init__(self, config: Config, **kwargs) -> None:
super().__init__(config)
- self.show_bar = self.echo_active and False
+ self.show_bar = self.echo_active
if self.show_bar:
self.alive_bar = alive_bar(**kwargs)