mirror of
https://github.com/kernc/backtesting.py.git
synced 2024-01-28 15:29:30 +03:00
Remove incorrect tqdm.auto warning
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user