From 8ca96b2c949d23dd9fbfc7896845aa79dd2f0181 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Fri, 9 Jul 2021 16:38:08 -0600 Subject: Fix some typing imports --- numpy/_array_api/_creation_functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/_array_api/_creation_functions.py') 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 -- cgit v1.2.1