mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-24 21:21:34 +08:00
Fix an issue, because sync_comp_for exists now
This commit is contained in:
@@ -757,7 +757,7 @@ class _ArglistRule(SyntaxRule):
|
||||
def is_issue(self, node):
|
||||
first_arg = node.children[0]
|
||||
if first_arg.type == 'argument' \
|
||||
and first_arg.children[1].type == 'comp_for':
|
||||
and first_arg.children[1].type in ('comp_for', 'sync_comp_for'):
|
||||
# e.g. foo(x for x in [], b)
|
||||
return len(node.children) >= 2
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user