diff options
author | Rodolfo M. Pereira <rodolfomp123@gmail.com> | 2023-04-24 23:24:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-24 23:24:49 (GMT) |
commit | 8291ae31ddc2f935b8ec60f3d5f3825f78ccf244 (patch) | |
tree | c20f450d55fbf588908da9e7048281a186709be1 /Lib/test/test_peepholer.py | |
parent | df3173d28ef25a0f97d2cca8cf4e64e062a08d06 (diff) | |
download | cpython-8291ae31ddc2f935b8ec60f3d5f3825f78ccf244.zip cpython-8291ae31ddc2f935b8ec60f3d5f3825f78ccf244.tar.gz cpython-8291ae31ddc2f935b8ec60f3d5f3825f78ccf244.tar.bz2 |
GH-103805: Lib test f541 linting issue fix (#103812)
This PR makes some minor linting adjustments to the Lib/test module
caught by [ruff](https://github.com/charliermarsh/ruff). The adjustments
are all related to the `F541 f-string without any placeholders` issue.
Issue: https://github.com/python/cpython/issues/103805
<!-- gh-issue-number: gh-103805 -->
* Issue: gh-103805
<!-- /gh-issue-number -->
---------
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Lib/test/test_peepholer.py')
-rw-r--r-- | Lib/test/test_peepholer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py index 01eb04b..bf7fc42 100644 --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -810,7 +810,7 @@ class TestMarkingVariablesAsUnKnown(BytecodeTestCase): self.assertInBytecode(f, 'LOAD_FAST', "a73") def test_setting_lineno_no_undefined(self): - code = textwrap.dedent(f"""\ + code = textwrap.dedent("""\ def f(): x = y = 2 if not x: @@ -842,7 +842,7 @@ class TestMarkingVariablesAsUnKnown(BytecodeTestCase): self.assertEqual(f.__code__.co_code, co_code) def test_setting_lineno_one_undefined(self): - code = textwrap.dedent(f"""\ + code = textwrap.dedent("""\ def f(): x = y = 2 if not x: @@ -876,7 +876,7 @@ class TestMarkingVariablesAsUnKnown(BytecodeTestCase): self.assertEqual(f.__code__.co_code, co_code) def test_setting_lineno_two_undefined(self): - code = textwrap.dedent(f"""\ + code = textwrap.dedent("""\ def f(): x = y = 2 if not x: |