Skip to content

Commit c76b763

Browse files
committed
MAINT: fixed indentation in crackfortran.py and removed unused variables in system_info.py
1 parent beacb39 commit c76b763

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

numpy/distutils/system_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3107,7 +3107,7 @@ def show_all(argv=None):
31073107
conf.verbosity = 2
31083108
# we don't need the result, but we want
31093109
# the side effect of printing diagnostics
3110-
r = conf.get_info()
3110+
conf.get_info()
31113111
if show_only:
31123112
log.info('Info classes not defined: %s', ','.join(show_only))
31133113

numpy/f2py/crackfortran.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2552,7 +2552,7 @@ def get_parameters(vars, global_params={}):
25522552

25532553
elif iscomplex(vars[n]):
25542554
outmess(f'get_parameters[TODO]:'
2555-
f'implement evaluation of complex expression {v}')
2555+
f'implement evaluation of complex expression {v}')
25562556

25572557
try:
25582558
params[n] = eval(v, g_params, params)

0 commit comments

Comments
 (0)