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 ace28ff commit 8921a7cCopy full SHA for 8921a7c
examples/progressbar_simpletest.py
@@ -28,10 +28,10 @@
28
current_progress = 0.0
29
while True:
30
# range end is exclusive so we need to use 1 bigger than max number that we want
31
- for current_progress in range(0, 101, 5):
+ for current_progress in range(0, 101, 1):
32
print("Progress: {}%".format(current_progress))
33
progress_bar.progress = current_progress / 100 # convert to decimal
34
- time.sleep(0.02)
+ time.sleep(0.01)
35
time.sleep(0.3)
36
progress_bar.progress = 0.0
37
0 commit comments