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 e6309aa commit 8620f9dCopy full SHA for 8620f9d
src/connectrpc/_server_async.py
@@ -1,7 +1,7 @@
1
import base64
2
import functools
3
import inspect
4
-from abc import abstractmethod
+from abc import ABC, abstractmethod
5
from asyncio import CancelledError, sleep
6
from collections.abc import (
7
AsyncGenerator,
@@ -73,7 +73,7 @@
73
)
74
75
76
-class ConnectASGIApplication(Generic[_SVC]):
+class ConnectASGIApplication(ABC, Generic[_SVC]):
77
"""An ASGI application for the Connect protocol."""
78
79
_resolved_endpoints: Mapping[str, Endpoint] | None
0 commit comments