From d48c5d04b8bb3a88342a98573f69c5b750c5cbbb Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Tue, 20 May 2025 16:50:21 +0200 Subject: [PATCH] removed stat that has become useless --- pull_requests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pull_requests.py b/pull_requests.py index d4f9c93..5c90056 100644 --- a/pull_requests.py +++ b/pull_requests.py @@ -435,12 +435,11 @@ def process_repo( unit="PR", ) as pbar: for pr in prs: - pbar.set_postfix({"pr": pr.number, "# new good found": n_good_prs}) + pbar.set_postfix({"pr": pr.number}) try: if pr.number in already_seen_prs: continue - n_good_prs += 1 process_pull( repo, pr, dataset, repos_dir, archive_destination, cache, show_progress )