summaryrefslogtreecommitdiff
path: root/kombu/utils/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'kombu/utils/text.py')
-rw-r--r--kombu/utils/text.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/kombu/utils/text.py b/kombu/utils/text.py
index fea53347..a6558cfc 100644
--- a/kombu/utils/text.py
+++ b/kombu/utils/text.py
@@ -22,7 +22,8 @@ def escape_regex(p, white=''):
def fmatch_iter(needle: str, haystack: Iterable[str], min_ratio: float = 0.6) -> Iterator[tuple[float, str]]:
"""Fuzzy match: iteratively.
- Yields:
+ Yields
+ ------
Tuple: of ratio and key.
"""
for key in haystack: