From f858c4adda93022dfc44fe750da08c1cd99ca7ef Mon Sep 17 00:00:00 2001 From: Kasia Krasnowska <kasia.krasnowska@gmail.com> Date: Tue, 19 Oct 2021 16:16:26 +0200 Subject: [PATCH] fix --- entries/phrase_descriptions/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entries/phrase_descriptions/utils.py b/entries/phrase_descriptions/utils.py index 8c6bacb..a8ca33d 100644 --- a/entries/phrase_descriptions/utils.py +++ b/entries/phrase_descriptions/utils.py @@ -106,7 +106,7 @@ STR_CASE = { None : { '_' : 'acc', 'aff' : 'acc', 'neg' : 'gen' }, } AGR_CASE = { 'subj' : 'nom', 'obj' : 'acc', 'head' : 'nom', None : 'nom' } -PART_CASE = { '_' : 'acc', 'aff' : 'acc', 'neg' : 'gen' }, +PART_CASE = { '_' : 'acc', 'aff' : 'acc', 'neg' : 'gen' } PRED_CASE = { 'subj' : { '_' : 'nom', 'aff' : 'nom', 'neg' : 'nom' }, 'obj' : { '_' : 'acc', 'aff' : 'acc', 'neg' : 'gen' }, -- GitLab