From c035bfbe7730002981e519033225ae119199e164 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Fri, 14 Mar 2025 09:49:50 +0100 Subject: [PATCH] updated stats_pull_requests to use the new utils interface --- stats_pull_requests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stats_pull_requests.py b/stats_pull_requests.py index 9bdcd82..6d53fc1 100644 --- a/stats_pull_requests.py +++ b/stats_pull_requests.py @@ -24,8 +24,8 @@ def move_github_logging_to_file(): github_logger.propagate = False # Prevent logging to standard output def process_pull(repo, pull): - commits = list(pull.get_commits()) - comments = list(pull.get_review_comments()) + commits = pull.get_commits() + comments = pull.get_review_comments() return { "repo": repo.full_name,