We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6543100 commit 347ba08Copy full SHA for 347ba08
src/django_github_app/github.py
@@ -33,12 +33,12 @@ def __init__(
33
**kwargs: Any,
34
) -> None:
35
self.installation_id = installation_id
36
+ self._client = httpx.AsyncClient(verify=ssl_context)
37
super().__init__(*args, cache=cache, **kwargs)
38
39
async def __aenter__(self) -> AsyncGitHubAPI:
40
from .models import Installation
41
- self._client = httpx.AsyncClient(verify=ssl_context)
42
if self.installation_id:
43
try:
44
installation = await Installation.objects.aget(
0 commit comments