Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
PYTHON_VERSION: '3.9'
steps:
- uses: actions/checkout@v3
- uses: pyvista/setup-headless-display-action@v2
- uses: pyvista/setup-headless-display-action@main
with:
qt: true
pyvista: false
Expand Down
2 changes: 1 addition & 1 deletion pyvistaqt/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def pad_image(arr: np.ndarray, max_size: int = 400) -> np.ndarray:
@contextlib.contextmanager
def _no_base_plotter_init() -> Generator[None, None, None]:
init = BasePlotter.__init__
BasePlotter.__init__ = lambda x: None
BasePlotter.__init__ = lambda *args, **kwargs: None
try:
yield
finally:
Expand Down