Skip to content
Snippets Groups Projects
Commit d45e7a8d authored by pswain's avatar pswain
Browse files

refactor(pipeline): removed tqdm call

parent 676bc7c8
No related branches found
No related tags found
No related merge requests found
......@@ -300,7 +300,7 @@ class Pipeline(ProcessABC):
# single core
results = [
self.run_one_position(position_id)
for position_id in tqdm(position_ids.items())
for position_id in position_ids.items()
]
# results is binary giving the success for each position
return results
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment