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 914c786 commit d6127aeCopy full SHA for d6127ae
data_algebra/parse_by_lark.py
@@ -185,7 +185,7 @@ def _r_walk_lark_tree(r_op):
185
if op_name is None:
186
raise ValueError("couldn't work out method name")
187
args = []
188
- if len(r_op.children) > 1:
+ if (len(r_op.children) > 1) and (r_op.children[1] is not None):
189
raw_args = r_op.children[1].children
190
args = [_r_walk_lark_tree(ai) for ai in raw_args]
191
if var is not None:
0 commit comments