Skip to content

Commit 14e9292

Browse files
committed
Fixes #129.
1 parent 08aabb7 commit 14e9292

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
@@ -154,7 +154,7 @@ def process_node(self, node):
154154
# so there should be no false alarms. Some errors are not reported, i.e. the cases
155155
# when advmod incorrectly depends on a function word ("right before midnight").
156156
if parent.udeprel in ('aux', 'cop', 'mark', 'clf', 'case'):
157-
if udeprel not in ('conj', 'cc', 'punct', 'fixed', 'goeswith', 'advmod'):
157+
if udeprel not in ('conj', 'cc', 'punct', 'fixed', 'goeswith', 'advmod', 'reparandum'):
158158
self.log(node, parent.deprel + '-child',
159159
'parent.deprel=%s deprel!=conj|cc|punct|fixed|goeswith' % parent.deprel)
160160

0 commit comments

Comments
 (0)