diff options
author | Nick Drozd <nicholasdrozd@gmail.com> | 2021-10-25 11:09:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 18:09:15 +0200 |
commit | 30743e0ffbf149246860a0d7ea4a1324c7a8ec00 (patch) | |
tree | b6dda3fc92e658ac1f9aa71da205f0bcb86c6e7b /pylint | |
parent | b6ca3b9d6f7ad42accdf90044628521bd711d1ec (diff) | |
download | pylint-git-30743e0ffbf149246860a0d7ea4a1324c7a8ec00.tar.gz |
Use backticks for any-all suggestion (#5207)
* Use backticks for any-all suggestion
If the suggestion contains a string, then the suggestion's quotes can
get mixed up with the the string's quotes.
Diffstat (limited to 'pylint')
-rw-r--r-- | pylint/extensions/for_any_all.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/extensions/for_any_all.py b/pylint/extensions/for_any_all.py index 9c7274095..2086fa4b1 100644 --- a/pylint/extensions/for_any_all.py +++ b/pylint/extensions/for_any_all.py @@ -17,7 +17,7 @@ class ConsiderUsingAnyOrAllChecker(BaseChecker): name = "consider-using-any-or-all" msgs = { "C0501": ( - "`for` loop could be '%s'", + "`for` loop could be `%s`", "consider-using-any-or-all", "A for loop that checks for a condition and return a bool can be replaced with any or all.", ) |