Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 5f4115d

Browse files
authored
Fix imports (#841)
1 parent df516cb commit 5f4115d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

sdc/extensions/indexes/range_index_ext.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
import operator
3131
import pandas as pd
3232

33-
from numba import types, cgutils
33+
from numba import types
34+
from numba.core import cgutils
3435
from numba.extending import (typeof_impl, NativeValue, intrinsic, box, unbox, lower_builtin)
35-
from numba.typing.templates import signature
36-
from numba.targets.imputils import impl_ret_new_ref, impl_ret_untracked, iterator_impl
36+
from numba.core.typing.templates import signature
37+
from numba.core.imputils import impl_ret_new_ref, impl_ret_untracked, iterator_impl
3738

3839
from sdc.datatypes.range_index_type import RangeIndexType, RangeIndexDataType
3940
from sdc.datatypes.common_functions import SDCLimitation

0 commit comments

Comments
 (0)