We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6837d89 commit 8213f54Copy full SHA for 8213f54
1 file changed
udapi/block/msf/slavic/imperative.py
@@ -7,7 +7,7 @@
7
import udapi.block.msf.phrase
8
9
class Imperative(udapi.block.msf.phrase.Phrase):
10
-
+
11
def process_node(self, node):
12
# the condition node.upos == 'VERB' ensures that copulas do not enter this branch
13
if node.feats['Mood'] == 'Imp' and node.upos == 'VERB':
@@ -65,6 +65,7 @@ def process_node(self, node):
65
phrase_ords.sort()
66
67
self.write_node_info(node,
68
+ aspect=copVerb.feats['Aspect'],
69
person=copVerb.feats['Person'],
70
number=copVerb.feats['Number'],
71
mood='Imp',
@@ -74,4 +75,3 @@ def process_node(self, node):
74
75
polarity=self.get_polarity(node,neg),
76
ords=phrase_ords
77
)
0 commit comments