diff options
author | default-303 <ajayds2001@gmail.com> | 2021-06-11 11:11:39 +0530 |
---|---|---|
committer | default-303 <ajayds2001@gmail.com> | 2021-06-11 11:11:39 +0530 |
commit | c76b76385b1a9b8672cf0855980ecfea7a8a7c6e (patch) | |
tree | 3236b0f146ab4f8f33ab4dfac64863adbd6436bc /numpy/distutils/system_info.py | |
parent | beacb394e94a517d1c84f8a50f9e18f3bf11ced5 (diff) | |
download | numpy-c76b76385b1a9b8672cf0855980ecfea7a8a7c6e.tar.gz |
MAINT: fixed indentation in crackfortran.py and removed unused variables in system_info.py
Diffstat (limited to 'numpy/distutils/system_info.py')
-rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index ded7d06e2..2846d754e 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -3107,7 +3107,7 @@ def show_all(argv=None): conf.verbosity = 2 # we don't need the result, but we want # the side effect of printing diagnostics - r = conf.get_info() + conf.get_info() if show_only: log.info('Info classes not defined: %s', ','.join(show_only)) |