From 5ed71973b3fde849dafc5678faf74fbec0005d30 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 8 May 2018 13:48:32 +0200 Subject: [PATCH] Add a keyword argument sink to GoldParse --- spacy/gold.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/gold.pyx b/spacy/gold.pyx index 24d1e0822..23a6afa41 100644 --- a/spacy/gold.pyx +++ b/spacy/gold.pyx @@ -394,7 +394,7 @@ cdef class GoldParse: def __init__(self, doc, annot_tuples=None, words=None, tags=None, heads=None, deps=None, entities=None, make_projective=False, - cats=None): + cats=None, **_): """Create a GoldParse. doc (Doc): The document the annotations refer to.