summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2020-10-27 19:19:45 -0600
committerCharles Harris <charlesr.harris@gmail.com>2020-11-01 15:44:13 -0700
commitdbe23fd71261940d0919071d72d579aa2c831603 (patch)
treed2596733aa714f463a67d4742b01df02856d6d30
parent9bc70e740253b4314ccce42bcd29c8f24875d704 (diff)
downloadnumpy-dbe23fd71261940d0919071d72d579aa2c831603.tar.gz
BUG: Fix small bug in make_lite.py.
Flagged by LGTM.
-rwxr-xr-xnumpy/linalg/lapack_lite/make_lite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/lapack_lite/make_lite.py b/numpy/linalg/lapack_lite/make_lite.py
index 6cbd11445..cf15b2541 100755
--- a/numpy/linalg/lapack_lite/make_lite.py
+++ b/numpy/linalg/lapack_lite/make_lite.py
@@ -81,7 +81,7 @@ class FortranRoutine:
return self._dependencies
def __repr__(self):
- return return f'FortranRoutine({self.name!r}, filename={self.filename!r})'
+ return f'FortranRoutine({self.name!r}, filename={self.filename!r})'
class UnknownFortranRoutine(FortranRoutine):
"""Wrapper for a Fortran routine for which the corresponding file