Remove unused attribute

This commit is contained in:
ines 2017-10-25 12:08:54 +02:00
parent 0b1dcbac14
commit 7bcec57462

View File

@ -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()