You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using tqdm 4.65.0 and message " Error displaying widget: model not found" appears in Jupyter Notebook 7 (not in JN<7) and JupterLab 4.03 when tqdm is inside another widget. Obviously, it comes from the fact that tqdm widget is discarded by param "leave=False".
The bug: tqdm_notebook(leave=False) inside another widget → JN 7 / JL 4 reports "Error displaying widget: model not found".
Reproduction of the bug:
from ipywidgets import interactive
from tqdm.notebook import tqdm_notebook
def x():
for i in tqdm_notebook(['a'], leave=False):
1
interactive(x)
I have reported the issue to tqdm and JN teams too.
Best,
Michal
The text was updated successfully, but these errors were encountered:
Hi,
the issue was wrongly closed, thus reopening.
Using tqdm 4.65.0 and message " Error displaying widget: model not found" appears in Jupyter Notebook 7 (not in JN<7) and JupterLab 4.03 when tqdm is inside another widget. Obviously, it comes from the fact that tqdm widget is discarded by param "leave=False".
The bug: tqdm_notebook(leave=False) inside another widget → JN 7 / JL 4 reports "Error displaying widget: model not found".
Reproduction of the bug:
I have reported the issue to tqdm and JN teams too.
Best,
Michal
The text was updated successfully, but these errors were encountered: