Skip to content

Commit 59a8329

Browse files
committed
Malayalam reflexive pronouns do not take case.
1 parent 9e6b1fb commit 59a8329

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

udapi/block/ud/ml/markfeatsbugs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def process_node(self, node):
5252
if node.feats['PronType'] == 'Prs':
5353
af['Reflex'] = ['Yes']
5454
if node.feats['Reflex'] == 'Yes':
55-
af['Case'] = [c for c in af['Case'] if c != 'Nom' and c != 'Voc']
55+
rf = ['PronType']
5656
else: # not reflexive
5757
rf.extend(['Person', 'Number'])
5858
af['Person'] = ['1', '2', '3']

0 commit comments

Comments
 (0)