From 981403ac2cbf8d3eae5a1f7e8a51d28b9136bcf5 Mon Sep 17 00:00:00 2001 From: James Nightingale Date: Wed, 27 Dec 2023 15:43:26 +0000 Subject: [PATCH] Overlay has int conversion built in --- autoarray/inversion/pixelization/image_mesh/overlay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoarray/inversion/pixelization/image_mesh/overlay.py b/autoarray/inversion/pixelization/image_mesh/overlay.py index 509d9d44..33f2aa5a 100644 --- a/autoarray/inversion/pixelization/image_mesh/overlay.py +++ b/autoarray/inversion/pixelization/image_mesh/overlay.py @@ -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