From dedad94a204ebec181401dd70032a8cb5ebb3cc0 Mon Sep 17 00:00:00 2001 From: ofir-frd Date: Thu, 24 Apr 2025 09:34:51 +0300 Subject: [PATCH] Fix code indentation in get_review_thread_comments method --- pr_agent/git_providers/github_provider.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pr_agent/git_providers/github_provider.py b/pr_agent/git_providers/github_provider.py index 485d5afe..4f3a5ec7 100644 --- a/pr_agent/git_providers/github_provider.py +++ b/pr_agent/git_providers/github_provider.py @@ -452,9 +452,9 @@ class GithubProvider(GitProvider): root_comment_id = target_comment.raw_data.get("in_reply_to_id", target_comment.id) # Build the thread - include the root comment and all replies to it thread_comments = [ - c for c in all_comments if - c.id == root_comment_id or c.raw_data.get("in_reply_to_id") == root_comment_id -] + c for c in all_comments if + c.id == root_comment_id or c.raw_data.get("in_reply_to_id") == root_comment_id + ] return thread_comments