mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
Remove unused attribute
This commit is contained in:
parent
0b1dcbac14
commit
7bcec57462
|
@ -198,7 +198,6 @@ cdef class Matcher:
|
||||||
cdef public object _patterns
|
cdef public object _patterns
|
||||||
cdef public object _entities
|
cdef public object _entities
|
||||||
cdef public object _callbacks
|
cdef public object _callbacks
|
||||||
cdef public object _acceptors
|
|
||||||
|
|
||||||
def __init__(self, vocab):
|
def __init__(self, vocab):
|
||||||
"""Create the Matcher.
|
"""Create the Matcher.
|
||||||
|
@ -209,7 +208,6 @@ cdef class Matcher:
|
||||||
"""
|
"""
|
||||||
self._patterns = {}
|
self._patterns = {}
|
||||||
self._entities = {}
|
self._entities = {}
|
||||||
self._acceptors = {}
|
|
||||||
self._callbacks = {}
|
self._callbacks = {}
|
||||||
self.vocab = vocab
|
self.vocab = vocab
|
||||||
self.mem = Pool()
|
self.mem = Pool()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user