Skip to content

Commit

Permalink
Use numba jit instead of njit to remove warning (#767)
Browse files Browse the repository at this point in the history
use numba jit instead of njit to remove warning

Co-authored-by: LucaMarconato <[email protected]>
  • Loading branch information
quentinblampey and LucaMarconato authored Nov 13, 2024
1 parent 063b3ee commit 42f7b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spatialdata/_core/query/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_bounding_box_corners(
return output.squeeze().drop_vars("box")


@nb.njit(parallel=False, nopython=True)
@nb.jit(parallel=False, nopython=True)
def _create_slices_and_translation(
min_values: nb.types.Array,
max_values: nb.types.Array,
Expand Down

0 comments on commit 42f7b6a

Please sign in to comment.