We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd06137 commit df9e64dCopy full SHA for df9e64d
1 file changed
src/integrations/github/api.py
@@ -139,7 +139,10 @@ async def get_repository(
139
if not headers:
140
return (
141
None,
142
- {"status": 401, "message": "Authentication required. Provide github_token or installation_id in the request."},
+ {
143
+ "status": 401,
144
+ "message": "Authentication required. Provide github_token or installation_id in the request.",
145
+ },
146
)
147
url = f"{config.github.api_base_url}/repos/{repo_full_name}"
148
session = await self._get_session()
0 commit comments