Skip to content
Snippets Groups Projects
Commit 877c60a0 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

Workaround tqdm issue

Add suggested workaround for https://github.com/tqdm/tqdm/issues/481
parent f22f80cf
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,8 @@ import errno
import tarfile
from tempfile import mkstemp
from tqdm import tqdm
tqdm.monitor_interval = 0 # see https://github.com/tqdm/tqdm/issues/481
try:
from urllib.request import urlretrieve
except ImportError:
......
......@@ -15,6 +15,7 @@ import pandas
import yaml
from mhcnames import normalize_allele_name
import tqdm # progress bar
tqdm.monitor_interval = 0 # see https://github.com/tqdm/tqdm/issues/481
from .class1_affinity_predictor import Class1AffinityPredictor
from .common import configure_logging, set_keras_backend
......
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