Skip to content

Commit bb35841

Browse files
committed
feat: less logs
1 parent b7f735d commit bb35841

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pokeapi_ditto/commands/clone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _do_in_parallel(worker: Callable, data: List, desc: str) -> None:
1515
pool = Pool(cpus, initializer=lambda: signal(SIGINT, SIG_IGN))
1616
try:
1717
for _ in tqdm(
18-
pool.imap_unordered(worker, data), total=len(data), desc=f"{desc} ({cpus}x)"
18+
pool.imap_unordered(worker, data), total=len(data), desc=f"{desc} ({cpus}x)", mininterval=1
1919
):
2020
pass
2121
except KeyboardInterrupt as interrupt:

0 commit comments

Comments
 (0)