From 822aa63f997f1024f5065a744f558c1b78a83da0 Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Fri, 21 Jun 2024 02:31:21 +0300 Subject: [PATCH] remove debug Signed-off-by: Ari Archer --- stats.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stats.py b/stats.py index 08aa2ca..b322615 100644 --- a/stats.py +++ b/stats.py @@ -76,7 +76,7 @@ def get_repositories() -> t.List[t.Dict[str, t.Any]]: while True: response: requests.Response = requests.get( - f"{BASE_URL}/users/{USERNAME}/repos?page={page}&limit=4" + f"{BASE_URL}/users/{USERNAME}/repos?page={page}&limit=100" ) response.raise_for_status() @@ -93,7 +93,6 @@ def get_repositories() -> t.List[t.Dict[str, t.Any]]: all_repos.append(repo) page += 1 - break return all_repos