fix: git_helper's tqdm encoding error
This commit is contained in:
@@ -16,7 +16,7 @@ working_directory = os.getcwd()
|
||||
class GitProgress(RemoteProgress):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
self.pbar = tqdm()
|
||||
self.pbar = tqdm(ascii=True)
|
||||
|
||||
def update(self, op_code, cur_count, max_count=None, message=''):
|
||||
self.pbar.total = max_count
|
||||
|
||||
Reference in New Issue
Block a user