Skip to content

Commit

Permalink
[Minor] Fix MyPy Complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
Rixxan committed Jun 17, 2024
1 parent 196bf9d commit fb1e3dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ def get_changelog() -> tuple[str, str]:
changelog[1] = "\n".join(changelog[1].strip().split("\n")[:-2])
version = changelog[0]
version = version.split(" ")[1]
changelog = changelog[1].strip()
final_changelog = changelog[1].strip()

return changelog, version
return final_changelog, version


def build_html(md_changelog: str, version: str) -> str:
Expand Down

0 comments on commit fb1e3dc

Please sign in to comment.