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/f2py/crackfortran.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/f2py/crackfortran.py')
-rwxr-xr-x | numpy/f2py/crackfortran.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/crackfortran.py b/numpy/f2py/crackfortran.py index b34c29a80..8b1dc5527 100755 --- a/numpy/f2py/crackfortran.py +++ b/numpy/f2py/crackfortran.py @@ -2552,7 +2552,7 @@ def get_parameters(vars, global_params={}): elif iscomplex(vars[n]): outmess(f'get_parameters[TODO]:' - f'implement evaluation of complex expression {v}') + f'implement evaluation of complex expression {v}') try: params[n] = eval(v, g_params, params) |