summaryrefslogtreecommitdiff
path: root/numpy/matlib.py
diff options
context:
space:
mode:
authorMike Taves <mwtoews@gmail.com>2020-01-21 22:12:09 +1300
committerMike Taves <mwtoews@gmail.com>2020-01-23 08:45:59 +1300
commitf9c5bd5ed1c241b189cea6cf5aef750526194708 (patch)
tree85006136a900dec2cd74c5cf4581a8f91f990b27 /numpy/matlib.py
parent47879187220243ca9d6dca5751491e62df846298 (diff)
downloadnumpy-f9c5bd5ed1c241b189cea6cf5aef750526194708.tar.gz
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
Diffstat (limited to 'numpy/matlib.py')
-rw-r--r--numpy/matlib.py2
1 files changed, 1 insertions, 1 deletions
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__