1
0
Fork 0

tools: wasptool: Change characters used in the progress bar

pull/24/head
Daniel Thompson 2020-04-10 20:31:26 +01:00
parent 23368a659b
commit 8cf9369efa
1 changed files with 2 additions and 2 deletions

View File

@ -17,10 +17,10 @@ def pbar(iterable, quiet=False):
if not quiet:
percent = round(step * i, 1)
bar = int(percent) // 2
print(f'[{"="*bar}{"-"*(50-bar)}] {percent}%', end='\r', flush=True)
print(f'[{"#"*bar}{"."*(50-bar)}] {percent}%', end='\r', flush=True)
yield v
if not quiet:
print(f'[{"="*50}] 100% ')
print(f'[{"#"*50}] 100% ')
def sync(c):
"""Stop the watch and synchronize with the command prompt.