Skip to content

Commit

Permalink
related to delph-in#319
Browse files Browse the repository at this point in the history
  • Loading branch information
arademaker committed Sep 28, 2020
1 parent 198f099 commit af66a79
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion delphin/eds/_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ def _mrs_args_to_basic_deps(m, hcmap, reps):
# qeq
if tgt in hcmap:
lbl = hcmap[tgt].lo
tgt = reps[lbl][0].id
if lbl in reps:
tgt = reps[lbl][0].id
else:
continue
# label arg
elif tgt in reps:
tgt = reps[tgt][0].id
Expand Down

0 comments on commit af66a79

Please sign in to comment.