From 7fa8ab6ac29c1dccf34dae5c53211ace67620ed7 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Sun, 5 Jul 2015 13:19:43 -0600 Subject: MAINT: Fix some pyflakes warnings in numpy/core/*.py These fixes are not agressive as some of the code is complicated and it is better to be careful. The files numeric.py and numerictypes.py are not easily analysed and the latter is self modifying. Pyflakes generates a number of invalid warnings for those files. --- numpy/core/function_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/core/function_base.py') diff --git a/numpy/core/function_base.py b/numpy/core/function_base.py index 1e759e0c2..e50e1a505 100644 --- a/numpy/core/function_base.py +++ b/numpy/core/function_base.py @@ -3,7 +3,7 @@ from __future__ import division, absolute_import, print_function __all__ = ['logspace', 'linspace'] from . import numeric as _nx -from .numeric import array, result_type, NaN +from .numeric import result_type, NaN def linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None): -- cgit v1.2.1