Skip to content
Snippets Groups Projects
Commit d0a1d94b authored by Moritz Huebner's avatar Moritz Huebner
Browse files

Fixed recently introduced bug

parent 697c23c1
No related branches found
No related tags found
No related merge requests found
......@@ -785,7 +785,7 @@ class UnsortedInterp2d(interp2d):
"""
unsorted_idxs = np.argsort(np.argsort(x))
return interp2d.__call__(self, x, y, dx=dx, dy=dy, assume_sorted=False)[unsorted_idxs, :]
return interp2d.__call__(self, x, y, dx=dx, dy=dy, assume_sorted=False)[unsorted_idxs]
# Instantiate the default argument parser at runtime
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment