Skip to content

Commit bc80b6d

Browse files
Jammy2211Jammy2211
authored andcommitted
fix
1 parent cfe9f37 commit bc80b6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoarray/inversion/pixelization/border_relocator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ def relocated_grid_via_ellipse_border_fro1m(grid, origin, a, b, phi, xp=np, eps=
313313

314314
return xp.where(outside[:, None], moved, grid)
315315

316-
def relocated_grid_via_ellipse_border_from_v0(grid, origin, a, b, phi, xp=np, eps=1e-12):
316+
def relocated_grid_via_ellipse_border_from(grid, origin, a, b, phi, xp=np, eps=1e-12):
317317
outside = grid[:, 0] > xp.asarray(0.0, dtype=grid.dtype)
318318
moved = grid # identical
319319
return xp.where(outside[:, None], moved, grid)

0 commit comments

Comments
 (0)