From ba07b925a7f8da962021121d006d8556631bb892 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 12 May 2015 22:33:47 +0200 Subject: [PATCH] * Fix compile error in conll.pyx --- spacy/syntax/conll.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/syntax/conll.pyx b/spacy/syntax/conll.pyx index c4afeb02d..a30d1c0ff 100644 --- a/spacy/syntax/conll.pyx +++ b/spacy/syntax/conll.pyx @@ -145,7 +145,7 @@ def _parse_line(line): cdef class GoldParse: - def __init__(self, tokens, annot_tuples, brackets=(,)): + def __init__(self, tokens, annot_tuples, brackets=tuple()): self.mem = Pool() self.loss = 0 self.length = len(tokens)