8000 MAINT: added space for readability in strings and basic refactoring · numpy/numpy@6ce7835 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6ce7835

Browse files
committed
MAINT: added space for readability in strings and basic refactoring
1 parent c76b763 commit 6ce7835

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numpy/f2py/crackfortran.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2551,7 +2551,7 @@ def get_parameters(vars, global_params={}):
25512551
v = ''.join(tt)
25522552

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

25572557
try:
@@ -2983,7 +2983,7 @@ def expr2name(a, block, args=[]):
29832983

29842984
def analyzeargs(block):
29852985
setmesstext(block)
2986-
implicitrules = buildimplicitrules(block)[0]
2986+
implicitrules, _ = buildimplicitrules(block)
29872987
if 'args' not in block:
29882988
block['args'] = []
29892989
args = []

0 commit comments

Comments
 (0)
0