Skip to content

Commit

Permalink
Apply black changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bwrsandman authored and github-actions[bot] committed May 11, 2024
1 parent 9ffbd3b commit 8c41487
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions post/clang_tidy_review/clang_tidy_review/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1100,12 +1100,12 @@ def decorate_comment_body(comment: str) -> str:


def decorate_comment(comment: PRReviewComment) -> PRReviewComment:
comment['body'] = decorate_comment_body(comment['body'])
comment["body"] = decorate_comment_body(comment["body"])
return comment


def decorate_comments(review: PRReview) -> PRReview:
review['comments'] = list(map(decorate_comment, review['comments']))
review["comments"] = list(map(decorate_comment, review["comments"]))
return review


Expand Down

0 comments on commit 8c41487

Please sign in to comment.