From ab027705d1b45fd72f8b7eb0391bedcda8724ffb Mon Sep 17 00:00:00 2001 From: Christoph Blessing <33834216+cblessing24@users.noreply.github.com> Date: Mon, 20 Nov 2023 14:50:59 +0100 Subject: [PATCH] Disable progress bar by default --- link/infrastructure/progress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/link/infrastructure/progress.py b/link/infrastructure/progress.py index 9b4bef6..7881ced 100644 --- a/link/infrastructure/progress.py +++ b/link/infrastructure/progress.py @@ -17,7 +17,7 @@ class TQDMProgressView(ProgressView): def __init__(self) -> None: """Initialize the view.""" self.__progress_bar: tqdm[NoReturn] | None = None - self._is_disabled: bool = False + self._is_disabled: bool = True @property def _progress_bar(self) -> tqdm[NoReturn]: