Skip to content

Commit 6dc8d14

Browse files
author
Pierre-Louis Barbarant
committed
Improve docstring formatting for progress bar function
1 parent 1694553 commit 6dc8d14

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/fugw/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222

2323
# `rich` progress bar used throughout the codebase
2424
def _get_progress(verbose=True, **kwargs):
25-
"""Return a custom `rich` progress bar if verbose is True, else a nullcontext."""
25+
"""Return a custom `rich` progress bar if verbose is True,
26+
else a nullcontext."""
2627
if not verbose:
2728
return nullcontext() # Do nothing when verbose is False
2829

0 commit comments

Comments
 (0)