From 8bba0dbae4afa81dd19e09e2d3d49a4a57ead8cf Mon Sep 17 00:00:00 2001 From: svlandeg Date: Thu, 12 Oct 2023 12:11:35 +0200 Subject: [PATCH] add all in kb.init --- spacy/kb/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/spacy/kb/__init__.py b/spacy/kb/__init__.py index 3ce3e4c33..93a65ab61 100644 --- a/spacy/kb/__init__.py +++ b/spacy/kb/__init__.py @@ -1,3 +1,11 @@ from .candidate import Candidate, get_candidates, get_candidates_batch from .kb import KnowledgeBase from .kb_in_memory import InMemoryLookupKB + +__all__ = [ + "Candidate", + "KnowledgeBase", + "InMemoryLookupKB", + "get_candidates", + "get_candidates_batch", +]