diff options
-rw-r--r-- | ci/download_gha_artifacts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/download_gha_artifacts.py b/ci/download_gha_artifacts.py index 5e86d243..ed0bbe25 100644 --- a/ci/download_gha_artifacts.py +++ b/ci/download_gha_artifacts.py @@ -51,7 +51,7 @@ os.chdir(dest) 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'])}") |