diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-12-19 17:07:56 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-12-19 17:07:56 -0500 |
commit | e65df0949be9e21a2ba0dd51f22e1aec1b53fe3f (patch) | |
tree | 1994adbde5116d1de8d7693d1034fd96a72a36c9 | |
parent | f1dc6ccf94fafb7932a3c8d1a3e81dee2dcc808e (diff) | |
download | python-coveragepy-git-e65df0949be9e21a2ba0dd51f22e1aec1b53fe3f.tar.gz |
Fix one pylint snagcoverage-5.3.1
-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'])}") |