remove debug

Signed-off-by: Ari Archer <ari@ari.lt>
This commit is contained in:
Ari Archer 2024-06-21 03:04:01 +03:00
parent c020c11787
commit 9e2adc1026
No known key found for this signature in database
GPG key ID: A50D5B4B599AF8A2

View file

@ -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