Skip to content

Commit

Permalink
Overlay has int conversion built in
Browse files Browse the repository at this point in the history
  • Loading branch information
Jammy2211 committed Dec 27, 2023
1 parent 1427681 commit 981403a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoarray/inversion/pixelization/image_mesh/overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def __init__(self, shape=(3, 3)):

super().__init__()

self.shape = shape
self.shape = (int(shape[0]), int(shape[1]))

def image_plane_mesh_grid_from(
self, grid: Grid2D, adapt_data: Optional[np.ndarray] = None
Expand Down

0 comments on commit 981403a

Please sign in to comment.