spaCy/spacy/matcher/__init__.py
Sofie Van Landeghem 699dd8b3b7
Update __all__ fields (#13063)
* update all for pipeline.init

* add all in training.init

* add all in kb.init

* alphabetically
2023-10-16 10:17:47 +02:00

7 lines
232 B
Python

from .dependencymatcher import DependencyMatcher
from .levenshtein import levenshtein
from .matcher import Matcher
from .phrasematcher import PhraseMatcher
__all__ = ["DependencyMatcher", "Matcher", "PhraseMatcher", "levenshtein"]