summaryrefslogtreecommitdiff
path: root/pylint/extensions/for_any_all.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/extensions/for_any_all.py')
-rw-r--r--pylint/extensions/for_any_all.py2
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.",
)