From d845ce91710972de8d7a7656330a71c356d14a44 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Fri, 14 Mar 2025 10:07:07 +0100 Subject: [PATCH] removed sorting of the commit dates because it isn't useful --- utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/utils.py b/utils.py index 7735566..2e51f84 100644 --- a/utils.py +++ b/utils.py @@ -48,7 +48,6 @@ def has_only_1_comment(commits: PaginatedList[Commit], comments: PaginatedList[P return False commit_dates = [commit.commit.author.date for commit in tqdm(commits, total=commits.totalCount, desc="Extracting date from commits", leave=False)] - commit_dates.sort() comment_date = comments[0].created_at