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