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

Merge branch 'hot_fix' into 'master'

Fixed recently introduced bug

See merge request lscsoft/bilby!464
parents 697c23c1 d0a1d94b
No related branches found
No related tags found
1 merge request!464Fixed recently introduced bug
Pipeline #59751 passed
......@@ -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