Skip to content

Commit e462acb

Browse files
authored
remove tqdm (#65)
1 parent 8b9fcd6 commit e462acb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

qdrant_client/qdrant_client.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import numpy as np
77
from loguru import logger
8-
from tqdm import tqdm
98

109
from qdrant_client import grpc
1110
from qdrant_client.conversions import common_types as types
@@ -1104,11 +1103,11 @@ def _upload_collection(
11041103

11051104
if parallel == 1:
11061105
updater = self._updater_class.start(**updater_kwargs)
1107-
for _ in tqdm(updater.process(batches_iterator)):
1106+
for _ in updater.process(batches_iterator):
11081107
pass
11091108
else:
11101109
pool = ParallelWorkerPool(parallel, self._updater_class, start_method=start_method)
1111-
for _ in tqdm(pool.unordered_map(batches_iterator, **updater_kwargs)):
1110+
for _ in pool.unordered_map(batches_iterator, **updater_kwargs):
11121111
pass
11131112

11141113
def upload_records(

0 commit comments

Comments
 (0)