summaryrefslogtreecommitdiff
path: root/numpy/_array_api/_creation_functions.py
diff options
context:
space:
mode:
authorAaron Meurer <asmeurer@gmail.com>2021-07-09 16:38:08 -0600
committerAaron Meurer <asmeurer@gmail.com>2021-07-09 16:38:08 -0600
commit8ca96b2c949d23dd9fbfc7896845aa79dd2f0181 (patch)
tree9884c64e73344d29de2b77a6b86310bf38e17cbe /numpy/_array_api/_creation_functions.py
parent29974fba6810e1be7e8a2ba8322bd8c78a9012d0 (diff)
downloadnumpy-8ca96b2c949d23dd9fbfc7896845aa79dd2f0181.tar.gz
Fix some typing imports
Diffstat (limited to 'numpy/_array_api/_creation_functions.py')
-rw-r--r--numpy/_array_api/_creation_functions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/_array_api/_creation_functions.py b/numpy/_array_api/_creation_functions.py
index 88b3808b4..2be0aea09 100644
--- a/numpy/_array_api/_creation_functions.py
+++ b/numpy/_array_api/_creation_functions.py
@@ -3,8 +3,8 @@ from __future__ import annotations
from typing import TYPE_CHECKING, List, Optional, Tuple, Union
if TYPE_CHECKING:
- from ._typing import (NestedSequence, SupportsDLPack,
- SupportsBufferProtocol, Array, Device, Dtype)
+ from ._typing import (Array, Device, Dtype, NestedSequence,
+ SupportsDLPack, SupportsBufferProtocol)
from collections.abc import Sequence
from ._dtypes import _all_dtypes