Skip to content

Commit 90afd75

Browse files
committed
infrastructure/runner: no tqdm
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
1 parent 150d7f4 commit 90afd75

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

infrastructure/runner.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import datetime
2121
import os
2222
import sys
23-
import tqdm
2423
import glob
2524
import gzip
2625
import json
@@ -95,9 +94,7 @@ def run(self):
9594
print('Writing to %s' % self.out_prefix)
9695

9796
with Pool(self.num_cpu) as pool:
98-
for _ in tqdm.tqdm(pool.imap_unordered(self.worker,
99-
self.task_list),
100-
total=len(self.task_list), unit='test'):
97+
for _ in pool.imap_unordered(self.worker, self.task_list):
10198
pass
10299

103100
def get_reports(self):

0 commit comments

Comments
 (0)