Skip to content

Commit

Permalink
Get rid of optional method keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Teves committed Dec 15, 2022
1 parent 8c54a18 commit e5fdec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tedana/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def make_adaptive_mask(data, mask=None, getsum=False, threshold=1):

# get 33rd %ile of `first_echo` and find corresponding index
# NOTE: percentile is arbitrary
perc = np.percentile(first_echo, 33, method="higher")
perc = np.percentile(first_echo, 33)
perc_val = echo_means[:, 0] == perc

# extract values from all echos at relevant index
Expand Down

0 comments on commit e5fdec1

Please sign in to comment.