Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
Jemoka committed Oct 10, 2024
1 parent f06112d commit b2591a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion batchalign/pipelines/morphosyntax/ud.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def handler__NOUN(word, lang=None):
case = feats.get("Case", "").replace(",", "")
type = feats.get("PronType", "")

if word.get("deprel") == "obj" and case.strip() == "":
if word.deprel == "obj" and case.strip() == "":
case = "Acc"

# clear defaults
Expand Down
6 changes: 3 additions & 3 deletions batchalign/version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
0.7.6-alpha.8
October 9, 2024
remove pos features for adj by default, and suppress number and person
0.7.6-alpha.9
October 10, 2024
patch urgent UD bug

0 comments on commit b2591a6

Please sign in to comment.