We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3fe0ad commit 360e742Copy full SHA for 360e742
jmespath/parser.py
@@ -277,11 +277,7 @@ def _token_led_lparen(self, left):
277
name = left['value']
278
args = []
279
while not self._current_token() == 'rparen':
280
- if self._current_token() == 'current':
281
- expression = ast.current_node()
282
- self._advance()
283
- else:
284
- expression = self._expression()
+ expression = self._expression()
285
if self._current_token() == 'comma':
286
self._match('comma')
287
args.append(expression)
0 commit comments