Skip to content

Commit

Permalink
MAINT: Deactivate grid plotting as default.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwboth committed Nov 26, 2023
1 parent 2395c09 commit 64d0179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/darsia/assistants/base_assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self, img: darsia.Image, **kwargs) -> None:
"""Flag controlling whether figure is blocking."""

if self.img.space_dim == 2:
self.plot_grid = kwargs.get("plot_grid", True)
self.plot_grid = kwargs.get("plot_grid", False)
"""Flag controlling whether grid is plotted (in 2d)."""
elif self.img.space_dim == 3:
self.threshold = kwargs.get("threshold")
Expand Down

0 comments on commit 64d0179

Please sign in to comment.