mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-02 03:40:38 +08:00
Fix code indentation in get_review_thread_comments method
This commit is contained in:
@ -452,9 +452,9 @@ class GithubProvider(GitProvider):
|
|||||||
root_comment_id = target_comment.raw_data.get("in_reply_to_id", target_comment.id)
|
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
|
# Build the thread - include the root comment and all replies to it
|
||||||
thread_comments = [
|
thread_comments = [
|
||||||
c for c in all_comments if
|
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.id == root_comment_id or c.raw_data.get("in_reply_to_id") == root_comment_id
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
return thread_comments
|
return thread_comments
|
||||||
|
Reference in New Issue
Block a user