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
This is because the input hook (see matplotlib/matplotlib#4779 for gory details) is not active in the debugger so the GUI framework never gets the chance to run its event loop and update the windows.
You can do plt.pause(1) (run the GUI for 1s), plt.show(block=True) (run the GUI until you close al of the open windows), or fig.canvas.flush_events() (process the current event queue in the GUI) to get responsive (ish) windows.
when I attempt at plotting an image after set_trace(), it does not appear while debugging
The text was updated successfully, but these errors were encountered: