Skip to content

Commit

Permalink
Fix visual indent in jsinterp
Browse files Browse the repository at this point in the history
force-test skip-release
  • Loading branch information
Taapat committed Sep 6, 2023
1 parent 071d948 commit da4b0bd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/jsinterp.py
Original file line number Diff line number Diff line change
Expand Up @@ -822,8 +822,7 @@ def eval_method():

elif md.get('function'):
fname = m.group('fname')
argvals = [self.interpret_expression(v, local_vars, allow_recursion)
for v in self._separate(m.group('args'))]
argvals = [self.interpret_expression(v, local_vars, allow_recursion) for v in self._separate(m.group('args'))]
if fname in local_vars:
return local_vars[fname](argvals, allow_recursion=allow_recursion), should_return
elif fname not in self._functions:
Expand Down

0 comments on commit da4b0bd

Please sign in to comment.