removed sorting of the commit dates because it

isn't useful
This commit is contained in:
Karma Riuk
2025-03-14 10:07:07 +01:00
parent 8f4614f71a
commit d845ce9171

View File

@ -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