From 257bca3959538ac40703720deb8a8b0c46eeba40 Mon Sep 17 00:00:00 2001 From: Raphael Mitsch Date: Wed, 1 Mar 2023 14:54:03 +0100 Subject: [PATCH] Format. --- spacy/kb/candidate.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/spacy/kb/candidate.py b/spacy/kb/candidate.py index a62249065..3cc3a6c59 100644 --- a/spacy/kb/candidate.py +++ b/spacy/kb/candidate.py @@ -12,7 +12,12 @@ class Candidate(abc.ABC): """ def __init__( - self, mention: str, entity_id: int, entity_name: str, entity_vector: List[float], prior_prob: float + self, + mention: str, + entity_id: int, + entity_name: str, + entity_vector: List[float], + prior_prob: float, ): """Initializes properties of `Candidate` instance. mention (str): Mention text for this candidate.