From e65df0949be9e21a2ba0dd51f22e1aec1b53fe3f Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 19 Dec 2020 17:07:56 -0500 Subject: Fix one pylint snag --- ci/download_gha_artifacts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci') 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'])}") -- cgit v1.2.1