alphabetically

This commit is contained in:
svlandeg 2023-10-12 12:11:48 +02:00
parent 8bba0dbae4
commit ee327c00b4
2 changed files with 2 additions and 2 deletions

View File

@ -3,4 +3,4 @@ from .levenshtein import levenshtein
from .matcher import Matcher
from .phrasematcher import PhraseMatcher
__all__ = ["Matcher", "PhraseMatcher", "DependencyMatcher", "levenshtein"]
__all__ = ["DependencyMatcher", "Matcher", "PhraseMatcher", "levenshtein"]

View File

@ -5,4 +5,4 @@ from .span import Span
from .span_group import SpanGroup
from .token import Token
__all__ = ["Doc", "Token", "Span", "SpanGroup", "DocBin", "MorphAnalysis"]
__all__ = ["Doc", "DocBin", "MorphAnalysis", "Span", "SpanGroup", "Token"]