summaryrefslogtreecommitdiff
path: root/tests/functional/t/too
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-08-30 07:57:05 +0200
committerGitHub <noreply@github.com>2021-08-30 07:57:05 +0200
commit66ffcbc4c59e41327be1a2b5ef65727bf0314aa9 (patch)
tree5b1f37a0ffadc2888f851337b36f75717ebf4c72 /tests/functional/t/too
parent1a19421058dcc04446f8b91a825ed1078959d87a (diff)
downloadpylint-git-66ffcbc4c59e41327be1a2b5ef65727bf0314aa9.tar.gz
Add ``Consider-using-f-string`` checker (#4796)
* Add ``consider-using-f-string`` checker This adds a checker for normal strings which are formatted with ``.format()`` or '%'. The message is a convention to nudge users towards using f-strings. This closes #3592 * Update pylint code to use f-strings After adding `consider-using-f-strings` the codebase showed numerous cases of formatting which could be f-strings. This commit changes most of these to become f-strings, or adds ignores. * Apply suggestions from code review Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'tests/functional/t/too')
-rw-r--r--tests/functional/t/too/too_many_return_statements.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/t/too/too_many_return_statements.py b/tests/functional/t/too/too_many_return_statements.py
index 66a85da40..b9f35a2ad 100644
--- a/tests/functional/t/too/too_many_return_statements.py
+++ b/tests/functional/t/too/too_many_return_statements.py
@@ -27,7 +27,7 @@ def stupid_function(arg): # [too-many-return-statements]
def many_yield(text):
"""Not a problem"""
if text:
- yield " line 1: %s\n" % text
+ yield f" line 1: {text}\n"
yield " line 2\n"
yield " line 3\n"
yield " line 4\n"