add missing type hints

This commit is contained in:
Max Bachmann 2022-10-02 07:04:57 +02:00
parent 69fc902930
commit 7b66bd5446
2 changed files with 61 additions and 1 deletions

@ -1 +1 @@
Subproject commit 571aab40023261003a9c7561947b01becf0cd828
Subproject commit 12daf9086a3035e551e618940256dd8a90d796cb

View File

@ -215,3 +215,63 @@ def osa_normalized_similarity(
processor: Optional[Callable[..., _StringType]] = None,
score_cutoff: Optional[float] = 0
) -> float: ...
def jaro_distance(
s1: _S1,
s2: _S2,
*,
processor: Optional[Callable[..., _StringType]] = None,
score_cutoff: Optional[int] = None
) -> float: ...
def jaro_normalized_distance(
s1: _S1,
s2: _S2,
*,
processor: Optional[Callable[..., _StringType]] = None,
score_cutoff: Optional[float] = 0
) -> float: ...
def jaro_similarity(
s1: _S1,
s2: _S2,
*,
processor: Optional[Callable[..., _StringType]] = None,
score_cutoff: Optional[int] = None
) -> float: ...
def jaro_normalized_similarity(
s1: _S1,
s2: _S2,
*,
processor: Optional[Callable[..., _StringType]] = None,
score_cutoff: Optional[float] = 0
) -> float: ...
def jaro_winkler_distance(
s1: _S1,
s2: _S2,
*,
prefix_weight: float = 0.1,
processor: Optional[Callable[..., _StringType]] = None,
score_cutoff: Optional[int] = None
) -> float: ...
def jaro_winkler_normalized_distance(
s1: _S1,
s2: _S2,
*,
prefix_weight: float = 0.1,
processor: Optional[Callable[..., _StringType]] = None,
score_cutoff: Optional[float] = 0
) -> float: ...
def jaro_winkler_similarity(
s1: _S1,
s2: _S2,
*,
prefix_weight: float = 0.1,
processor: Optional[Callable[..., _StringType]] = None,
score_cutoff: Optional[int] = None
) -> float: ...
def jaro_winkler_normalized_similarity(
s1: _S1,
s2: _S2,
*,
prefix_weight: float = 0.1,
processor: Optional[Callable[..., _StringType]] = None,
score_cutoff: Optional[float] = 0
) -> float: ...