diff options
author | Alessia Marcolini <98marcolini@gmail.com> | 2021-10-08 09:49:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-08 09:49:11 +0000 |
commit | 4d23ebeb068c8d6ba6edfc11d32ab2af8bb89c74 (patch) | |
tree | 1373c4adb011d37bd1cdc02b95a0e8682da1c602 /numpy/array_api/tests/test_creation_functions.py | |
parent | e1909f72f11cddab3b6fec3f9e419a1f6026a2fd (diff) | |
download | numpy-4d23ebeb068c8d6ba6edfc11d32ab2af8bb89c74.tar.gz |
MAINT: remove unused imports
Diffstat (limited to 'numpy/array_api/tests/test_creation_functions.py')
-rw-r--r-- | numpy/array_api/tests/test_creation_functions.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/numpy/array_api/tests/test_creation_functions.py b/numpy/array_api/tests/test_creation_functions.py index 3cb8865cd..7b633eaf1 100644 --- a/numpy/array_api/tests/test_creation_functions.py +++ b/numpy/array_api/tests/test_creation_functions.py @@ -8,30 +8,15 @@ from .._creation_functions import ( empty, empty_like, eye, - from_dlpack, full, full_like, linspace, - meshgrid, ones, ones_like, zeros, zeros_like, ) from .._array_object import Array -from .._dtypes import ( - _all_dtypes, - _boolean_dtypes, - _floating_dtypes, - _integer_dtypes, - _integer_or_boolean_dtypes, - _numeric_dtypes, - int8, - int16, - int32, - int64, - uint64, -) def test_asarray_errors(): |