Skip to content

Commit

Permalink
fix the io broken bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jorhelp committed Jun 21, 2022
1 parent 69d5ea0 commit 16ca0a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 16ca0a9

Please sign in to comment.