Skip to content

Commit bb51c93

Browse files
committed
Czech third-person personal pronouns must allow Variant=Short.
1 parent d98beee commit bb51c93

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

udapi/block/ud/cs/markfeatsbugs.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def process_node(self, node):
222222
'PronType': ['Prs'],
223223
'Person': ['3']
224224
})
225-
else: # jeho, něho, jemu, němu, jej, něj, něm, jím, ním, jí, ní, ji, ni, je, ně
225+
else: # jeho, něho, ho, jemu, němu, mu, jej, něj, něm, jím, ním, jí, ní, ji, ni, je, ně
226226
# Mostly only two gender groups and no animacy:
227227
# Masc,Neut ... jeho, jemu, jej, něm, jím
228228
# Fem ... jí, ji, ní
@@ -232,7 +232,8 @@ def process_node(self, node):
232232
self.check_adjective_like(node, ['PronType', 'Person', 'PrepCase'], {
233233
'PronType': ['Prs'],
234234
'Person': ['3'],
235-
'PrepCase': ['Npr', 'Pre']
235+
'PrepCase': ['Npr', 'Pre'],
236+
'Variant': ['Short']
236237
})
237238
else: # 1st and 2nd person do not have gender: já, ty
238239
self.check_required_features(node, ['PronType', 'Person', 'Number', 'Case'])

0 commit comments

Comments
 (0)