We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76767c3 commit 1fea20bCopy full SHA for 1fea20b
1 file changed
array_api_compat/numpy/_info.py
@@ -7,6 +7,8 @@
7
more details.
8
9
"""
10
+from __future__ import annotations
11
+
12
from numpy import bool_ as bool
13
from numpy import (
14
complex64,
@@ -137,7 +139,7 @@ def default_dtypes(
137
139
self,
138
140
*,
141
device: Device | None = None,
- ) -> dict[str, "dtype[intp | float64 | complex128]"]:
142
+ ) -> dict[str, dtype[intp | float64 | complex128]]:
143
144
The default data types used for new NumPy arrays.
145
0 commit comments