Skip to content

Commit 35cfe7b

Browse files
authored
Update log.py
1 parent 60dd393 commit 35cfe7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pymove/utils/log.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ def progress_bar(
147147
148148
Return
149149
------
150-
>>> from pymove.utils.log import _log_progress_bar, progress_bar
151-
>>> for i in progress_bar(range(1,101), desc='tests', total = 100):
150+
>>> from pymove.utils.log import progress_bar
151+
>>> for i in progress_bar(range(1,101), desc='Print 1 to 100'):
152152
>>> print(i)
153-
# A progress bar that walks the range
153+
# A bar that shows the progress of the iterations
154154
"""
155155
if logger.level > logging.INFO:
156156
return sequence

0 commit comments

Comments
 (0)