Skip to content

Commit

Permalink
Fix issue with clang-tidy output
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobDomagala committed May 26, 2021
1 parent 93cb920 commit 4036458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_static_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def prepare_comment_body(cppcheck_comment, clang_tidy_comment, cppcheck_issues_f

if len(clang_tidy_comment) > 0:
full_comment_body += f'<details> <summary> <b> :red_circle: clang-tidy found'\
f' {clang_tidy_issues_found} {"issues" if cppcheck_issues_found > 1 else "issue"}! Click here to see details. </b> </summary> <br>'\
f' {clang_tidy_issues_found} {"issues" if clang_tidy_issues_found > 1 else "issue"}! Click here to see details. </b> </summary> <br>'\
f'{clang_tidy_comment} </details><br>\n'

if current_comment_length == COMMENT_MAX_SIZE:
Expand Down

0 comments on commit 4036458

Please sign in to comment.