diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-10-21 13:02:41 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2017-10-21 13:03:31 -0700 |
commit | d22a71bab7b787527035d5eb87ca3bc5acb0f88e (patch) | |
tree | 6be015dbcdabfe31836476320f7c4d644eace8f7 /numpy/lib/shape_base.py | |
parent | 63e2f6d5ee34b759e419e29661a9823a4d8b069e (diff) | |
download | numpy-d22a71bab7b787527035d5eb87ca3bc5acb0f88e.tar.gz |
MAINT: Remove unused isscalar import
Diffstat (limited to 'numpy/lib/shape_base.py')
-rw-r--r-- | numpy/lib/shape_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py index 53578e0e4..deab938ea 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -4,7 +4,7 @@ import warnings import numpy.core.numeric as _nx from numpy.core.numeric import ( - asarray, zeros, outer, concatenate, isscalar, array, asanyarray + asarray, zeros, outer, concatenate, array, asanyarray ) from numpy.core.fromnumeric import product, reshape, transpose from numpy.core.multiarray import normalize_axis_index |