We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60dd393 commit 35cfe7bCopy full SHA for 35cfe7b
pymove/utils/log.py
@@ -147,10 +147,10 @@ def progress_bar(
147
148
Return
149
------
150
- >>> from pymove.utils.log import _log_progress_bar, progress_bar
151
- >>> for i in progress_bar(range(1,101), desc='tests', total = 100):
+ >>> from pymove.utils.log import progress_bar
+ >>> for i in progress_bar(range(1,101), desc='Print 1 to 100'):
152
>>> print(i)
153
- # A progress bar that walks the range
+ # A bar that shows the progress of the iterations
154
"""
155
if logger.level > logging.INFO:
156
return sequence
0 commit comments