From f9c5bd5ed1c241b189cea6cf5aef750526194708 Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Tue, 21 Jan 2020 22:12:09 +1300 Subject: MAINT: resolve pyflake F403 'from module import *' used * For external modules, resolve imported members * Most internal relative modules were ignored or marked noqa: F403 * Convert a few internal absolute imports to relative imports --- numpy/matlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/matlib.py') diff --git a/numpy/matlib.py b/numpy/matlib.py index f3eb8eb4b..1f0345be4 100644 --- a/numpy/matlib.py +++ b/numpy/matlib.py @@ -1,7 +1,7 @@ import numpy as np from numpy.matrixlib.defmatrix import matrix, asmatrix # need * as we're copying the numpy namespace (FIXME: this makes little sense) -from numpy import * +from numpy import * # noqa: F403 __version__ = np.__version__ -- cgit v1.2.1