Skip to content

Commit 301429b

Browse files
authored
Merge pull request #363 from jhlegarreta/sty/use-underscore-for-unused-param
STY: Use underscore for unused parameter returned by function
2 parents 9b59f1c + a5f2e77 commit 301429b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nifreeze/data/dmri/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def find_shelling_scheme(
106106

107107
# Bin the b-values: use -1 as the lower bound to be able to appropriately
108108
# include b0 values
109-
hist, bin_edges = np.histogram(bvals, bins=num_bins, range=(-1, min(max(bvals), bval_cap)))
109+
_, bin_edges = np.histogram(bvals, bins=num_bins, range=(-1, min(max(bvals), bval_cap)))
110110

111111
# Collect values in each bin
112112
bval_groups = []

0 commit comments

Comments
 (0)