diff options
author | default-303 <ajayds2001@gmail.com> | 2021-05-26 07:29:49 +0530 |
---|---|---|
committer | default-303 <ajayds2001@gmail.com> | 2021-05-26 07:29:49 +0530 |
commit | 115ed1d8d5432ff4307d1e07819fec33bb72755c (patch) | |
tree | 96819ebf197f11f6f1c2237daf2b6544a1923498 /numpy/distutils/system_info.py | |
parent | b3e54cc7ea0808642829b9aa71fa8e51dcc6050e (diff) | |
download | numpy-115ed1d8d5432ff4307d1e07819fec33bb72755c.tar.gz |
MAINT: Removed suitable unused variables shown in LGTM
Diffstat (limited to 'numpy/distutils/system_info.py')
-rw-r--r-- | numpy/distutils/system_info.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 82e864a5c..741959aa4 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1342,8 +1342,6 @@ class atlas_info(system_info): lapack = None atlas_1 = None for d in lib_dirs: - # FIXME: lapack_atlas is unused - lapack_atlas = self.check_libs2(d, ['lapack_atlas'], []) atlas = self.check_libs2(d, atlas_libs, []) if atlas is not None: lib_dirs2 = [d] + self.combine_paths(d, ['atlas*', 'ATLAS*']) @@ -3107,8 +3105,6 @@ def show_all(argv=None): del show_only[show_only.index(name)] conf = c() conf.verbosity = 2 - # FIXME: r not used - r = conf.get_info() if show_only: log.info('Info classes not defined: %s', ','.join(show_only)) |