aboutsummaryrefslogtreecommitdiffhomepage
path: root/sec_certs/parallel_processing.py
diff options
context:
space:
mode:
authoradamjanovsky2021-12-15 09:10:25 +0100
committerGitHub2021-12-15 09:10:25 +0100
commit26cdcb9840d53250586933f77a64ec1ec1e4e204 (patch)
treeb38b0d691ae39e9e53e8bf210ff8ea3be744448a /sec_certs/parallel_processing.py
parent115eb92542ba23745c84c63feb36e70ed3c28d16 (diff)
parent5cf8b22ed4479b7a5de032cacc4379ed8dfef577 (diff)
downloadsec-certs-26cdcb9840d53250586933f77a64ec1ec1e4e204.tar.gz
sec-certs-26cdcb9840d53250586933f77a64ec1ec1e4e204.tar.zst
sec-certs-26cdcb9840d53250586933f77a64ec1ec1e4e204.zip
Merge pull request #134 from J08nY/feature/tqdm-configuration
Add configuration switch to enable/disable tqdm.
Diffstat (limited to 'sec_certs/parallel_processing.py')
-rw-r--r--sec_certs/parallel_processing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sec_certs/parallel_processing.py b/sec_certs/parallel_processing.py
index b21c4001..ae8a1221 100644
--- a/sec_certs/parallel_processing.py
+++ b/sec_certs/parallel_processing.py
@@ -1,4 +1,4 @@
-from tqdm import tqdm
+from sec_certs.helpers import tqdm
from multiprocessing.pool import Pool, ThreadPool
from typing import Callable, Iterable, Optional, Union
import time