Skip to content

Commit 991295b

Browse files
committed
fix: add missing import
1 parent 5970e62 commit 991295b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array_api_stubs/_draft/searching_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__all__ = ["argmax", "argmin", "count_nonzero", "nonzero", "searchsorted", "where"]
22

33

4-
from ._types import Optional, Tuple, Literal, array
4+
from ._types import Optional, Tuple, Literal, Union, array
55

66

77
def argmax(x: array, /, *, axis: Optional[int] = None, keepdims: bool = False) -> array:

0 commit comments

Comments
 (0)