diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-07-09 09:06:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-09 09:06:05 +0300 |
commit | 1f95d7914ff23ffeb95767de79c55b4f702e6f2f (patch) | |
tree | 4c244226b594ce7235f8095e4be084eac5734af4 /numpy/linalg/lapack_lite | |
parent | 1d7939e1d26adbedaeec98c8153ea2e37297f520 (diff) | |
parent | 6ce7835aa8ac388724739956e06bef4bd8abdac2 (diff) | |
download | numpy-1f95d7914ff23ffeb95767de79c55b4f702e6f2f.tar.gz |
Merge pull request #19102 from default-303/LGTM_unused_variables
MAINT: Removed suitable unused variables shown in LGTM
Diffstat (limited to 'numpy/linalg/lapack_lite')
-rw-r--r-- | numpy/linalg/lapack_lite/fortran.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/lapack_lite/fortran.py b/numpy/linalg/lapack_lite/fortran.py index 3aaefb92f..fc09f0808 100644 --- a/numpy/linalg/lapack_lite/fortran.py +++ b/numpy/linalg/lapack_lite/fortran.py @@ -110,7 +110,7 @@ def getDependencies(filename): for lineno, line in fortranSourceLines(fo): m = external_pat.match(line) if m: - names = line = line[m.end():].strip().split(',') + names = line[m.end():].strip().split(',') names = [n.strip().lower() for n in names] names = [n for n in names if n] routines.extend(names) |