Skip to content

Commit

Permalink
Run black
Browse files Browse the repository at this point in the history
  • Loading branch information
adelavega committed Jan 9, 2024
1 parent 8e97c15 commit d661479
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nimare/meta/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ def compute_kda_ma(
study_values = np.zeros(shape, dtype=np.int32)

if sum_overlap:
study_values[sphere_coords[:, 0], sphere_coords[:, 1], sphere_coords[:, 2]] += value
study_values[
sphere_coords[:, 0], sphere_coords[:, 1], sphere_coords[:, 2]
] += value
else:
study_values[sphere_coords[:, 0], sphere_coords[:, 1], sphere_coords[:, 2]] = value

Expand Down

0 comments on commit d661479

Please sign in to comment.