summaryrefslogtreecommitdiff
path: root/babel
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2023-02-20 17:27:36 +0200
committerGitHub <noreply@github.com>2023-02-20 17:27:36 +0200
commit373a52f0425d0af1e578e8562a8db93fc3a02488 (patch)
tree301ff0dbc877b7ef7f1fd5c844c90efaebb7a82e /babel
parentc76f1d4bc574c4885b7a1afa90da3ca5026153ec (diff)
downloadbabel-373a52f0425d0af1e578e8562a8db93fc3a02488.tar.gz
Renovate CI tools a bit (#972)
* Update GitHub Actions versions * Update pre-commit tools
Diffstat (limited to 'babel')
-rw-r--r--babel/messages/catalog.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/babel/messages/catalog.py b/babel/messages/catalog.py
index a500e77..47b9e62 100644
--- a/babel/messages/catalog.py
+++ b/babel/messages/catalog.py
@@ -38,10 +38,10 @@ def get_close_matches(word, possibilities, n=3, cutoff=0.6):
It just passes ``autojunk=False`` to the ``SequenceMatcher``, to work
around https://github.com/python/cpython/issues/90825.
"""
- if not n > 0:
- raise ValueError("n must be > 0: %r" % (n,))
- if not 0.0 <= cutoff <= 1.0:
- raise ValueError("cutoff must be in [0.0, 1.0]: %r" % (cutoff,))
+ if not n > 0: # pragma: no cover
+ raise ValueError(f"n must be > 0: {n!r}")
+ if not 0.0 <= cutoff <= 1.0: # pragma: no cover
+ raise ValueError(f"cutoff must be in [0.0, 1.0]: {cutoff!r}")
result = []
s = SequenceMatcher(autojunk=False) # only line changed from difflib.py
s.set_seq2(word)