From 9e2adc1026cd77e9497dbe25c95f7ba3757ad03e Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Fri, 21 Jun 2024 03:04:01 +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 33c27d8..ba3ab1f 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