From a1f87dc7a50562aa28947f138af9989c6dc16543 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Mon, 14 Nov 2022 14:18:02 +0100 Subject: [PATCH] Update type for _default_fuzzy_match --- spacy/matcher/matcher.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/matcher/matcher.pyi b/spacy/matcher/matcher.pyi index e485d07c4..2b17d28de 100644 --- a/spacy/matcher/matcher.pyi +++ b/spacy/matcher/matcher.pyi @@ -53,4 +53,4 @@ class Matcher: ) -> List[Span]: ... def _normalize_key(self, key: Any) -> Any: ... -def fuzzy_match(s1: str, s2: str, fuzzy: int=-1) -> bool: ... +def _default_fuzzy_match(s1: str, s2: str, fuzzy: int=-1) -> bool: ...