From 4c78537c6027cfbd2e1c8311f54fed5a9f3e5e85 Mon Sep 17 00:00:00 2001 From: kdeldycke Date: Sun, 7 Jan 2024 06:00:24 +0000 Subject: [PATCH] [autofix] Format Python --- .github/metadata.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/metadata.py b/.github/metadata.py index ec6129016..56c685921 100644 --- a/.github/metadata.py +++ b/.github/metadata.py @@ -838,7 +838,8 @@ def release_notes(self) -> str | None: # Generate a link to the version of the package published on PyPi. pypi_link = "" if self.package_name: - pypi_link = f"[🐍 Available on PyPi](https://pypi.org/project/{self.package_name}/{version})." + pypi_link = f"[🐍 Available on PyPi](https://pypi.org/project/{ + self.package_name}/{version})." # Assemble the release notes. return f"{changes}\n\n{pypi_link}".strip()