summaryrefslogtreecommitdiff
path: root/numpy/_array_api/_creation_functions.py
diff options
context:
space:
mode:
authorAaron Meurer <asmeurer@gmail.com>2021-07-09 14:00:34 -0600
committerAaron Meurer <asmeurer@gmail.com>2021-07-09 14:00:34 -0600
commit6379138a6da6ebf73bfc4bc4e019a21d8a99be0a (patch)
treec4e8a35233779e3ad3a229fe55b212f2ac347600 /numpy/_array_api/_creation_functions.py
parent60add4a3ebabcc1e8dae07c4c11a65f56607f708 (diff)
downloadnumpy-6379138a6da6ebf73bfc4bc4e019a21d8a99be0a.tar.gz
Rename numpy/_array_api/_types.py to numpy/_array_api/_typing.py
Diffstat (limited to 'numpy/_array_api/_creation_functions.py')
-rw-r--r--numpy/_array_api/_creation_functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/_array_api/_creation_functions.py b/numpy/_array_api/_creation_functions.py
index 517c2bfdd..88b3808b4 100644
--- a/numpy/_array_api/_creation_functions.py
+++ b/numpy/_array_api/_creation_functions.py
@@ -3,7 +3,7 @@ from __future__ import annotations
from typing import TYPE_CHECKING, List, Optional, Tuple, Union
if TYPE_CHECKING:
- from ._types import (NestedSequence, SupportsDLPack,
+ from ._typing import (NestedSequence, SupportsDLPack,
SupportsBufferProtocol, Array, Device, Dtype)
from collections.abc import Sequence
from ._dtypes import _all_dtypes