We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257f64d commit 787f3b2Copy full SHA for 787f3b2
1 file changed
tqdm/_tqdm_pandas.py
@@ -60,7 +60,7 @@ def inner(df, func, *args, **kwargs):
60
# Init bar
61
if isinstance(tclass, type) or \
62
(hasattr(tclass, '__name__') and
63
- tclass.__name__ == 'tqdm_notebook'): # delayed adapter case
+ tclass.__name__.startswith('tqdm_')): # delayed adapter case
64
t = tclass(*targs, total=total, **tkwargs)
65
else:
66
t = tclass
0 commit comments