From 8c41487f59d4170a8f50f856fbccecd7d50041eb Mon Sep 17 00:00:00 2001 From: bwrsandman Date: Sat, 11 May 2024 04:33:11 +0000 Subject: [PATCH] Apply black changes --- post/clang_tidy_review/clang_tidy_review/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/post/clang_tidy_review/clang_tidy_review/__init__.py b/post/clang_tidy_review/clang_tidy_review/__init__.py index 2fc8b50..e4eb311 100644 --- a/post/clang_tidy_review/clang_tidy_review/__init__.py +++ b/post/clang_tidy_review/clang_tidy_review/__init__.py @@ -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