Permalink
Browse files
Remove incorrect tqdm.auto warning
- Loading branch information...
Showing
with
0 additions
and
2 deletions.
-
+0
−2
backtesting/backtesting.py
|
|
@@ -23,8 +23,6 @@ |
|
|
|
try: |
|
|
|
from tqdm.auto import tqdm as _tqdm |
|
|
|
_tqdm = partial(_tqdm, leave=False) |
|
|
|
warnings.warn('Using tqdm in Jupyter Notebook mode. ' |
|
|
|
'Raise an issue if you experience problems.') |
|
|
|
except ImportError: |
|
|
|
def _tqdm(seq, **_): |
|
|
|
return seq |
|
|
|
0 comments on commit
b8f5824