tqdm now optional

pull/1/head
Ozbolt Menegatti 5 years ago
parent ed27e549b7
commit 44d532808d

@ -12,7 +12,11 @@ import concurrent.futures
import tempfile
from msd_translate import MSD_TRANSLATE
from tqdm import tqdm
try:
from tqdm import tqdm
except ImportError:
tqdm = lambda x: x
MAX_NUM_COMPONENTS = 5

Loading…
Cancel
Save