Skip to content

Commit 8620f9d

Browse files
committed
ABC
Signed-off-by: Anuraag Agrawal <[email protected]>
1 parent e6309aa commit 8620f9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/connectrpc/_server_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import base64
22
import functools
33
import inspect
4-
from abc import abstractmethod
4+
from abc import ABC, abstractmethod
55
from asyncio import CancelledError, sleep
66
from collections.abc import (
77
AsyncGenerator,
@@ -73,7 +73,7 @@
7373
)
7474

7575

76-
class ConnectASGIApplication(Generic[_SVC]):
76+
class ConnectASGIApplication(ABC, Generic[_SVC]):
7777
"""An ASGI application for the Connect protocol."""
7878

7979
_resolved_endpoints: Mapping[str, Endpoint] | None

0 commit comments

Comments
 (0)