Skip to content

Commit

Permalink
Merge pull request sinzlab#57 from christoph-blessing/fix_issue56
Browse files Browse the repository at this point in the history
Disable progress bar by default
  • Loading branch information
christoph-blessing authored Nov 20, 2023
2 parents 2f6e0b6 + ab02770 commit 5f4dfa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion link/infrastructure/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down

0 comments on commit 5f4dfa7

Please sign in to comment.