1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-04-18 08:01:58 +03:00
This commit is contained in:
Dāvis 2025-04-04 11:48:29 +07:00 committed by GitHub
commit 636648c6d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
import pytest
from mock import Mock
from unittest.mock import Mock
from spacy.tokens import Doc, Span, Token
from spacy.tokens.underscore import Underscore

View File

@ -3,7 +3,7 @@ import pickle
import re
import pytest
from mock import Mock
from unittest.mock import Mock
from spacy.matcher import DependencyMatcher
from spacy.tokens import Doc, Token

View File

@ -1,5 +1,5 @@
import pytest
from mock import Mock
from unittest.mock import Mock
from spacy.matcher import Matcher
from spacy.tokens import Doc, Span, Token

View File

@ -2,7 +2,7 @@ import warnings
import pytest
import srsly
from mock import Mock
from unittest.mock import Mock
from spacy.lang.en import English
from spacy.matcher import Matcher, PhraseMatcher

View File

@ -1,5 +1,5 @@
import pytest
from mock import Mock
from unittest.mock import Mock
from spacy.language import Language
from spacy.pipe_analysis import get_attr_info, validate_attrs