diff options
author | Elisha Hollander <just4now666666@gmail.com> | 2021-07-07 13:41:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 13:41:08 +0300 |
commit | d785aa39f99720950cd7f9acfe1133494cb5ff58 (patch) | |
tree | 8f78de6090ff688d0da26dc99eef47a5a26c607b /numpy/core/multiarray.py | |
parent | 3d83143c2c2f877ee921c4c7c6746d836c459839 (diff) | |
download | numpy-d785aa39f99720950cd7f9acfe1133494cb5ff58.tar.gz |
MAINT: Remove unused imports and unreachable code (#18762)
* Remove unnecessary imports and minor fixes
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py index 3205f4ecd..154df6f4d 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -7,8 +7,6 @@ by importing from the extension module. """ import functools -import warnings - from . import overrides from . import _multiarray_umath from ._multiarray_umath import * # noqa: F403 |