From b8f5824686f99f1cc46e8d2db65a05eb53cbcb19 Mon Sep 17 00:00:00 2001 From: Kernc Date: Fri, 11 Jan 2019 06:59:58 +0100 Subject: [PATCH] Remove incorrect tqdm.auto warning --- backtesting/backtesting.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/backtesting/backtesting.py b/backtesting/backtesting.py index e188b8d..ec6c743 100644 --- a/backtesting/backtesting.py +++ b/backtesting/backtesting.py @@ -23,8 +23,6 @@ import pandas as pd 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