Skip to content

Commit

Permalink
Fixed missing default value in plot_slices
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewHerzing committed Jun 28, 2024
1 parent 0b535df commit 6bd781d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tomotools/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@ class RecStack(CommonStack):
CommonStack class
"""

def plot_slices(self, xslice, yslice=None, zslice=None, vmin_std=0.1, vmax_std=5):
def plot_slices(self, xslice=None, yslice=None, zslice=None, vmin_std=0.1, vmax_std=5):
"""
Plot slices along all three axes of a reconstruction stack.
Expand Down

0 comments on commit 6bd781d

Please sign in to comment.