Skip to content

Commit

Permalink
Fixed bug in regridding.find_indices() where the input axes were be…
Browse files Browse the repository at this point in the history
…ing used instead of the output axes.
  • Loading branch information
byrdie committed Dec 1, 2023
1 parent ebeed3e commit 513cf74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion regridding/_find_indices/_find_indices.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def find_indices(
np.moveaxis(
a=i.reshape(*shape_orthogonal, *shape_output),
source=axis_output_numba,
destination=axis_input,
destination=axis_output,
)
for i in indices_output
)
Expand Down

0 comments on commit 513cf74

Please sign in to comment.