Skip to content

Commit cecb9eb

Browse files
committed
Fixes #131.
1 parent 057d483 commit cecb9eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

udapi/block/ud/markbugs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def process_node(self, node):
118118
if upos == i_upos and not feats[i_feat]:
119119
# Some languages do not distinguish finite and non-finite forms of verbs.
120120
# The VerbForm feature is not obligatory in those languages.
121-
if i_feat != 'VerbForm' or not node.root.zone.split('_')[0] in {'id', 'jv', 'tl', 'hil', 'ifb'}:
121+
if i_feat != 'VerbForm' or not node.root.zone.split('_')[0] in {'id', 'jv', 'tl', 'hil', 'ifb', 'naq'}:
122122
self.log(node, 'no-' + i_feat, 'upos=%s but %s feature is missing' % (upos, i_feat))
123123

124124
if feats['VerbForm'] == 'Fin':

0 commit comments

Comments
 (0)