Skip to content

Commit

Permalink
Add missing f-string prefix in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
BUYT-1 committed Aug 3, 2023
1 parent 2521172 commit 2e07de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion post/clang_tidy_review/clang_tidy_review/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ def download_artifacts(pull: PullRequest, workflow_id: int):
# Didn't find the artefact, so bail
print(
f"Couldn't find 'clang-tidy-review' artifact for workflow '{workflow_id}'. "
"Available artifacts are: {list(workflow.get_artifacts())}"
f"Available artifacts are: {list(workflow.get_artifacts())}"
)
return None, None

Expand Down

0 comments on commit 2e07de6

Please sign in to comment.