Skip to content

Commit 3dad7f7

Browse files
committed
TYP: remove TYPE_CHECKING guard from _typing
1 parent b83ba61 commit 3dad7f7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/array_api_extra/_typing.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from __future__ import annotations
22

33
from types import ModuleType
4-
from typing import TYPE_CHECKING, Any
4+
from typing import Any
55

6-
if TYPE_CHECKING:
7-
Array = Any # To be changed to a Protocol later (see array-api#589)
6+
Array = Any # To be changed to a Protocol later (see array-api#589)
87

98
__all__ = ["Array", "ModuleType"]

0 commit comments

Comments
 (0)