Skip to content

Commit 66325f0

Browse files
hugovkezio-melotti
andauthored
No need for f-string
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
1 parent ae9e18d commit 66325f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def tweak_readme(tag: Tag, filename: str = "README.rst") -> None:
439439
# and update length of underline in second line to match.
440440
lines = readme.read_text().splitlines()
441441
this_is = f"This is Python version {tag.long_name}"
442-
underline = f"{'=' * len(this_is)}"
442+
underline = "=" * len(this_is)
443443
lines[0] = this_is
444444
lines[1] = underline
445445

0 commit comments

Comments
 (0)