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 c5f4b42 commit 60dd393Copy full SHA for 60dd393
pymove/utils/log.py
@@ -145,6 +145,12 @@ def progress_bar(
145
miniters : int, optional
146
Represents the steps in which the bar will be updated, by default None.
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):
152
+ >>> print(i)
153
+ # A progress bar that walks the range
154
"""
155
if logger.level > logging.INFO:
156
return sequence
0 commit comments