diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-09-24 11:04:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 11:04:07 -0600 |
commit | a856eb539fc265e0971c89099b303ca77f75c006 (patch) | |
tree | 148c58820b2816ff5a2284284ea76bdf8d0cbecf /numpy | |
parent | 5030da8543e725efb1ccc4b433f1cb0391bad464 (diff) | |
parent | a95fc4a27b638b1d4ab32d6dd9907b46805051bb (diff) | |
download | numpy-a856eb539fc265e0971c89099b303ca77f75c006.tar.gz |
Merge pull request #19942 from DimitriPapadopoulos/lgtm_warning_unreachable_return
MAINT: Fix LGTM.com warning: Unreachable code
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index f9891e93b..39178071d 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -535,7 +535,6 @@ def _can_target(cmd, arch): os.remove(output) finally: os.remove(filename) - return False if __name__ == '__main__': |