From 306e80648bad483019b4ba1ff313f4e8fa76bfe2 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Tue, 1 Apr 2025 09:19:35 +0200 Subject: [PATCH] added print statements --- pull_requests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pull_requests.py b/pull_requests.py index 5f75208..63454d0 100644 --- a/pull_requests.py +++ b/pull_requests.py @@ -42,7 +42,9 @@ def get_good_projects(csv_file: str) -> pd.DataFrame: Returns: pd.DataFrame: The good projects. """ + print(f"Reading {csv_file}...", end="") df = pd.read_csv(csv_file) + print("Done") return df.loc[(df['good_repo_for_crab'] == True) & (df['n_tests'] > 0)]