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 49dd9a2 commit 597c5e2Copy full SHA for 597c5e2
src/django_github_app/views.py
@@ -14,7 +14,6 @@
14
from django.utils.decorators import method_decorator
15
from django.views.decorators.csrf import csrf_exempt
16
from django.views.generic import View
17
-from gidgethub.abc import GitHubAPI
18
from gidgethub.routing import Router as GidgetHubRouter
19
from gidgethub.sansio import Event
20
@@ -26,7 +25,7 @@
26
25
from .models import Installation
27
from .routing import GitHubRouter
28
29
-GitHubAPIType = TypeVar("GitHubAPIType", AsyncGitHubAPI, GitHubAPI, SyncGitHubAPI)
+GitHubAPIType = TypeVar("GitHubAPIType", AsyncGitHubAPI, SyncGitHubAPI)
30
31
32
class BaseWebhookView(View, ABC, Generic[GitHubAPIType]):
0 commit comments