1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 15:27:14 +03:00

[Minor] Fix MyPy Complaint

This commit is contained in:
David Sangrey 2024-06-17 14:51:56 -04:00
parent 196bf9de52
commit fb1e3dcab6
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -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: