Skip to content

Commit

Permalink
Merge pull request #6 from SHADE-AI/visit_orr_fix
Browse files Browse the repository at this point in the history
Fix visit_orr error: name 'output' not defined
  • Loading branch information
byung-o authored Aug 15, 2022
2 parents 9f7ec2e + 232fe14 commit 747a7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daidepp/parser/node_visitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def visit_orr(self, node, visited_children):
for par_arr in par_arrangements:
_, arr, _ = par_arr
print("arr", arr)
output["ORR"].append(arr)
arr_list.append(arr)

return ("ORR", arr_list)

Expand Down

0 comments on commit 747a7e7

Please sign in to comment.