We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7f735d commit bb35841Copy full SHA for bb35841
1 file changed
pokeapi_ditto/commands/clone.py
@@ -15,7 +15,7 @@ def _do_in_parallel(worker: Callable, data: List, desc: str) -> None:
15
pool = Pool(cpus, initializer=lambda: signal(SIGINT, SIG_IGN))
16
try:
17
for _ in tqdm(
18
- pool.imap_unordered(worker, data), total=len(data), desc=f"{desc} ({cpus}x)"
+ pool.imap_unordered(worker, data), total=len(data), desc=f"{desc} ({cpus}x)", mininterval=1
19
):
20
pass
21
except KeyboardInterrupt as interrupt:
0 commit comments