From 7bcec574620b611882e74d2356f6ffdead628ae3 Mon Sep 17 00:00:00 2001 From: ines Date: Wed, 25 Oct 2017 12:08:54 +0200 Subject: [PATCH] Remove unused attribute --- spacy/matcher.pyx | 2 -- 1 file changed, 2 deletions(-) diff --git a/spacy/matcher.pyx b/spacy/matcher.pyx index a0c69f4bf..2c001c652 100644 --- a/spacy/matcher.pyx +++ b/spacy/matcher.pyx @@ -198,7 +198,6 @@ cdef class Matcher: cdef public object _patterns cdef public object _entities cdef public object _callbacks - cdef public object _acceptors def __init__(self, vocab): """Create the Matcher. @@ -209,7 +208,6 @@ cdef class Matcher: """ self._patterns = {} self._entities = {} - self._acceptors = {} self._callbacks = {} self.vocab = vocab self.mem = Pool()