diff --git a/utils/base.py b/utils/base.py index 31526a5..a503167 100644 --- a/utils/base.py +++ b/utils/base.py @@ -100,7 +100,7 @@ def wrapper(total, done, found=0, timer=False, start_time=0): _found = 'Found ' + output_formatter(found, color='red', bold=True) if found else '' count = f"{_done}/{_total}({_percent}) {_found}" - print(f"\r{icon} {count} {_time:<55}", end='', flush=True) + print(f"\r{icon} {count} {_time:<55}", end='') return wrapper