From ddb94ec9b40d3cefaf51c40a0b38f4c0d6428483 Mon Sep 17 00:00:00 2001 From: Benedict Lee Date: Thu, 24 Apr 2025 11:22:43 +0900 Subject: [PATCH] mprove get_review_thread_comments method implementation Co-authored-by: ofir-frd <85901822+ofir-frd@users.noreply.github.com> --- pr_agent/git_providers/github_provider.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pr_agent/git_providers/github_provider.py b/pr_agent/git_providers/github_provider.py index daa0c84b..a526f594 100644 --- a/pr_agent/git_providers/github_provider.py +++ b/pr_agent/git_providers/github_provider.py @@ -456,8 +456,6 @@ class GithubProvider(GitProvider): c.id == root_comment_id or c.raw_data.get("in_reply_to_id") == root_comment_id ] - # Sort chronologically - thread_comments.sort(key=lambda c: c.created_at) return thread_comments