mirror of
https://git.ari.lt/ari/forgejo-stats.git
synced 2024-11-13 21:02:37 +00:00
remove debug
Signed-off-by: Ari Archer <ari@ari.lt>
This commit is contained in:
parent
c020c11787
commit
9e2adc1026
1 changed files with 1 additions and 2 deletions
3
stats.py
3
stats.py
|
@ -76,7 +76,7 @@ def get_repositories() -> t.List[t.Dict[str, t.Any]]:
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
response: requests.Response = requests.get(
|
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()
|
response.raise_for_status()
|
||||||
|
@ -93,7 +93,6 @@ def get_repositories() -> t.List[t.Dict[str, t.Any]]:
|
||||||
all_repos.append(repo)
|
all_repos.append(repo)
|
||||||
|
|
||||||
page += 1
|
page += 1
|
||||||
break
|
|
||||||
|
|
||||||
return all_repos
|
return all_repos
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue