diff --git a/ci/download_gha_artifacts.py b/ci/download_gha_artifacts.py index 5e86d2435..ed0bbe259 100644 --- a/ci/download_gha_artifacts.py +++ b/ci/download_gha_artifacts.py @@ -51,7 +51,7 @@ def utc2local(timestring): r = requests.get(f"https://api.github.com/repos/{repo_owner}/actions/artifacts") dists = [a for a in r.json()["artifacts"] if a["name"] == "dist"] if not dists: - print(f"No recent dists!") + print("No recent dists!") else: latest = max(dists, key=lambda a: a["created_at"]) print(f"Artifacts created at {utc2local(latest['created_at'])}")