diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-01-23 14:35:59 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 14:35:59 +1100 |
commit | 61c5c5d2c4ad91a1c5507162c822bfb1426ea405 (patch) | |
tree | cc9b81ae189053ecf2a431a6f2db58715a49dd94 /numpy/core/setup.py | |
parent | b02f478988407a5f0d6b608a29141e2fd9814b35 (diff) | |
parent | f9c5bd5ed1c241b189cea6cf5aef750526194708 (diff) | |
download | numpy-61c5c5d2c4ad91a1c5507162c822bfb1426ea405.tar.gz |
Merge pull request #15366 from mwtoews/F403
MAINT: resolve pyflake F403 'from module import *' used
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index e376d5a23..66c1b782e 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -14,7 +14,7 @@ from numpy._build_utils.apple_accelerate import ( uses_accelerate_framework, get_sgemv_fix ) from numpy.compat import npy_load_module -from setup_common import * +from setup_common import * # noqa: F403 # Set to True to enable relaxed strides checking. This (mostly) means # that `strides[dim]` is ignored if `shape[dim] == 1` when setting flags. |