Skip to content

Commit

Permalink
release.py line-too-long
Browse files Browse the repository at this point in the history
Added a line break between the files, making it slightly more readable.
  • Loading branch information
evidencebp committed Oct 3, 2024
1 parent a5d2778 commit 42a5022
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ def tag_and_push():
print(f">>> Creating {release_filename} ...")
first_section = False
prev_line = None
with open(release_filename, "w") as release_txt, open("CHANGELOG.rst", "r") as changelog_file:
with open(release_filename, "w") as release_txt,\
open("CHANGELOG.rst", "r") as changelog_file:
headline = f"python-chess {tagname}"
release_txt.write(headline + os.linesep)

Expand Down

0 comments on commit 42a5022

Please sign in to comment.