From 981099353f2b9d71da4749931695a3cb05c058fc Mon Sep 17 00:00:00 2001 From: Richard Date: Mon, 16 Dec 2024 08:53:55 +0000 Subject: [PATCH] fix numpy jax import --- autoarray/structures/grids/irregular_2d.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autoarray/structures/grids/irregular_2d.py b/autoarray/structures/grids/irregular_2d.py index 52003115..a2aa50bf 100644 --- a/autoarray/structures/grids/irregular_2d.py +++ b/autoarray/structures/grids/irregular_2d.py @@ -1,13 +1,12 @@ import logging from typing import List, Optional, Tuple, Union -from autoarray.numpy_wrapper import np +from autoarray.numpy_wrapper import numpy as np from autoarray.abstract_ndarray import AbstractNDArray from autoarray.geometry.geometry_2d_irregular import Geometry2DIrregular from autoarray.mask.mask_2d import Mask2D from autoarray.structures.arrays.irregular import ArrayIrregular -from autoarray import exc from autoarray.structures.grids import grid_2d_util from autoarray.geometry import geometry_util