diff options
author | 2022-10-16 15:28:44 -0500 | |
---|---|---|
committer | 2022-10-16 15:28:44 -0500 | |
commit | de3b6a48f773a9738fa76d14192f27ca7ee10a80 (patch) | |
tree | 5fd1b9733e170b2d6de940e16983bd9c17960144 /pydis_site/apps/api/github_utils.py | |
parent | Merge branch 'main' into main (diff) | |
parent | Merge pull request #780 from python-discord/repo-token-remove (diff) |
Merge branch 'main' into main
Diffstat (limited to 'pydis_site/apps/api/github_utils.py')
-rw-r--r-- | pydis_site/apps/api/github_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/github_utils.py b/pydis_site/apps/api/github_utils.py index 5d7bcdc3..986c64e1 100644 --- a/pydis_site/apps/api/github_utils.py +++ b/pydis_site/apps/api/github_utils.py @@ -108,7 +108,7 @@ def authorize(owner: str, repo: str) -> httpx.Client: client = httpx.Client( base_url=settings.GITHUB_API, headers={"Authorization": f"bearer {generate_token()}"}, - timeout=settings.TIMEOUT_PERIOD, + timeout=10, ) try: |