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.
TYPE_CHECKING
_typing
1 parent b83ba61 commit 3dad7f7Copy full SHA for 3dad7f7
src/array_api_extra/_typing.py
@@ -1,9 +1,8 @@
1
from __future__ import annotations
2
3
from types import ModuleType
4
-from typing import TYPE_CHECKING, Any
+from typing import Any
5
6
-if TYPE_CHECKING:
7
- Array = Any # To be changed to a Protocol later (see array-api#589)
+Array = Any # To be changed to a Protocol later (see array-api#589)
8
9
__all__ = ["Array", "ModuleType"]
0 commit comments