diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-05-25 14:36:51 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 14:36:51 -0600 |
commit | ecdba3a140126174a6a4d86fe0fbf2ce2ad680f9 (patch) | |
tree | da9d0f709301410d54939fe0af6c426b190f2098 /numpy/typing/_array_like.py | |
parent | 5520a1757e4476bc6526973ad46c46b82637ae1c (diff) | |
parent | b3e54cc7ea0808642829b9aa71fa8e51dcc6050e (diff) | |
download | numpy-ecdba3a140126174a6a4d86fe0fbf2ce2ad680f9.tar.gz |
Merge pull request #19090 from default-303/LGTM_alerts
MAINT: removed unused imports listed in LGTM
Diffstat (limited to 'numpy/typing/_array_like.py')
-rw-r--r-- | numpy/typing/_array_like.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/typing/_array_like.py b/numpy/typing/_array_like.py index 9f57b2295..2283c98d7 100644 --- a/numpy/typing/_array_like.py +++ b/numpy/typing/_array_like.py @@ -1,7 +1,7 @@ from __future__ import annotations import sys -from typing import Any, overload, Sequence, TYPE_CHECKING, Union, TypeVar +from typing import Any, Sequence, TYPE_CHECKING, Union, TypeVar from numpy import ( ndarray, @@ -20,7 +20,6 @@ from numpy import ( str_, bytes_, ) -from ._dtype_like import DTypeLike if sys.version_info >= (3, 8): from typing import Protocol |