Skip to content

Commit

Permalink
fix: slicer args not taken into account
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLapous committed Oct 19, 2024
1 parent e958744 commit 0459cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions multipers/_slicer_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ def Slicer(
dtype = st.dtype if dtype is None else dtype
is_kcritical = st.is_kcritical if is_kcritical is None else is_kcritical
else:
dtype = np.float64
is_kcritical = False
dtype = np.float64 if dtype is None else dtype
is_kcritical = False if is_kcritical is None else is_kcritical

if is_slicer(st, allow_minpres=False):
vineyard = st.is_vine if vineyard is None else vineyard
Expand Down

0 comments on commit 0459cff

Please sign in to comment.