This commit is contained in:
Raphael Mitsch 2024-02-01 12:38:37 +01:00
parent f169614c53
commit c174ebf880
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,6 @@ from .candidate import Candidate
from .typedefs import CandidatesForMention from .typedefs import CandidatesForMention
cdef class KnowledgeBase: cdef class KnowledgeBase:
"""A `KnowledgeBase` instance stores unique identifiers for entities and """A `KnowledgeBase` instance stores unique identifiers for entities and
their textual aliases, to support entity linking of named entities to their textual aliases, to support entity linking of named entities to

View File

@ -1,4 +1,5 @@
from .candidate import Candidate
from typing import Iterable from typing import Iterable
from .candidate import Candidate
ctypedef Iterable[Candidate] CandidatesForMention ctypedef Iterable[Candidate] CandidatesForMention