We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b98615 commit 27dd017Copy full SHA for 27dd017
1 file changed
udapi/block/msf/slavic/converb.py
@@ -7,7 +7,7 @@
7
import udapi.block.msf.phrase
8
9
class Converb(udapi.block.msf.phrase.Phrase):
10
-
+
11
def process_node(self, node):
12
# condition node.upos == 'VERB' to prevent copulas from entering this branch
13
if node.feats['VerbForm'] == 'Conv' and node.upos == 'VERB':
@@ -69,6 +69,7 @@ def process_node(self, node):
69
70
71
self.write_node_info(node,
72
+ aspect=copVerb.feats['Aspect'],
73
person=copVerb.feats['Person'],
74
number=copVerb.feats['Number'],
75
tense=copVerb.feats['Tense'],
@@ -79,4 +80,3 @@ def process_node(self, node):
79
80
ords=phrase_ords,
81
voice=self.get_voice(copVerb, refl)
82
)
0 commit comments