Remove incorrect tqdm.auto warning

This commit is contained in:
Kernc
2019-01-11 06:59:58 +01:00
parent 08028591ac
commit b8f5824686

View File

@@ -23,8 +23,6 @@ import pandas as pd
try: try:
from tqdm.auto import tqdm as _tqdm from tqdm.auto import tqdm as _tqdm
_tqdm = partial(_tqdm, leave=False) _tqdm = partial(_tqdm, leave=False)
warnings.warn('Using tqdm in Jupyter Notebook mode. '
'Raise an issue if you experience problems.')
except ImportError: except ImportError:
def _tqdm(seq, **_): def _tqdm(seq, **_):
return seq return seq