Skip to content

Commit

Permalink
TYP: remove TYPE_CHECKING guard from _typing
Browse files Browse the repository at this point in the history
  • Loading branch information
lucascolley committed Nov 15, 2024
1 parent b83ba61 commit 3dad7f7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/array_api_extra/_typing.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from __future__ import annotations

from types import ModuleType
from typing import TYPE_CHECKING, Any
from typing import Any

if TYPE_CHECKING:
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)

__all__ = ["Array", "ModuleType"]

0 comments on commit 3dad7f7

Please sign in to comment.