diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-11-02 12:38:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-02 12:38:33 -0700 |
commit | c96717f9fa0e9efe506ad4eeebf36f5a8b27bd80 (patch) | |
tree | 66e7c6d592bb4dcce94006383077dcf6668c3322 | |
parent | 3eefc256a7d87fdab7aac059b61f7deb2834d517 (diff) | |
parent | dbe23fd71261940d0919071d72d579aa2c831603 (diff) | |
download | numpy-c96717f9fa0e9efe506ad4eeebf36f5a8b27bd80.tar.gz |
Merge pull request #17689 from charris/fix-lgtm-error
BUG: Fix small bug in ``make_lite.py``.
-rwxr-xr-x | numpy/linalg/lapack_lite/make_lite.py | 2 |
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 |