Skip to content

Commit

Permalink
suppress pyvista point error for now
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrockhill committed Jul 22, 2022
1 parent 815f18b commit 2575402
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mne/viz/backends/renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,10 @@ def close_3d_figure(figure):

def close_all_3d_figures():
"""Close all the scenes of the current 3d backend."""
backend._close_all()
try:
backend._close_all()
except Exception:
pass


def get_brain_class():
Expand Down

0 comments on commit 2575402

Please sign in to comment.