Skip to content

Commit

Permalink
ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
Kabir Khan committed Feb 17, 2024
1 parent 52b646e commit aec69aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion recon/loaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
import spacy
import srsly
from spacy.language import Language
from spacy.tokens import Doc, DocBin, Span as SpacySpan
from spacy.tokens import Doc, DocBin
from spacy.tokens import Span as SpacySpan
from spacy.util import get_words_and_spaces

from recon.types import Example, Span, Token
Expand Down
3 changes: 2 additions & 1 deletion recon/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@

from pydantic import BaseModel, field_validator, model_validator
from spacy import displacy
from spacy.tokens import Doc, Span as SpacySpan
from spacy.tokens import Doc
from spacy.tokens import Span as SpacySpan
from spacy.util import get_words_and_spaces
from spacy.vocab import Vocab
from wasabi import color
Expand Down

0 comments on commit aec69aa

Please sign in to comment.