Shorten progress bars to 20 characters

They were needlessly long and this limited the message size.
This commit is contained in:
2024-09-30 03:04:10 -04:00
parent 7785166a7e
commit 974e0d6ac2
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ class UploadProgressBar(object):
else:
self.end_suffix = ""
self.bar = click.progressbar(length=self.length, show_eta=True)
self.bar = click.progressbar(length=self.length, width=20, show_eta=True)
def update(self, monitor):
bytes_cur = monitor.bytes_read