Skip to content

Commit e65df09

Browse files
committed
Fix one pylint snag
1 parent f1dc6cc commit e65df09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/download_gha_artifacts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def utc2local(timestring):
5151
r = requests.get(f"https://api.github.com/repos/{repo_owner}/actions/artifacts")
5252
dists = [a for a in r.json()["artifacts"] if a["name"] == "dist"]
5353
if not dists:
54-
print(f"No recent dists!")
54+
print("No recent dists!")
5555
else:
5656
latest = max(dists, key=lambda a: a["created_at"])
5757
print(f"Artifacts created at {utc2local(latest['created_at'])}")

0 commit comments

Comments
 (0)