We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a13da8e commit 852f765Copy full SHA for 852f765
src/array_api_extra/_funcs.py
@@ -1,6 +1,7 @@
1
from __future__ import annotations # https://github.com/pylint-dev/pylint/pull/9990
2
3
import operator
4
+import typing
5
import warnings
6
7
# https://github.com/pylint-dev/pylint/issues/10112
@@ -14,7 +15,9 @@
14
15
is_dask_array,
16
is_writeable_array,
17
)
-from ._lib._typing import Array, Index, ModuleType, Untyped
18
+
19
+if typing.TYPE_CHECKING:
20
+ from ._lib._typing import Array, Index, ModuleType, Untyped
21
22
__all__ = [
23
"at",
0 commit comments