Skip to content

Commit cc68635

Browse files
committed
fix grpc
1 parent ab99f47 commit cc68635

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sentry_sdk/integrations/grpc/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def _wrap_channel_async(func: Callable[P, AsyncChannel]) -> Callable[P, AsyncCha
8181
"Wrapper for asynchronous secure and insecure channel."
8282

8383
@wraps(func)
84-
def patched_channel(
84+
def patched_channel( # type: ignore
8585
*args: P.args,
8686
interceptors: Optional[Sequence[grpc.aio.ClientInterceptor]] = None,
8787
**kwargs: P.kwargs,
@@ -100,7 +100,7 @@ def _wrap_sync_server(func: Callable[P, Server]) -> Callable[P, Server]:
100100
"""Wrapper for synchronous server."""
101101

102102
@wraps(func)
103-
def patched_server(
103+
def patched_server( # type: ignore
104104
*args: P.args,
105105
interceptors: Optional[Sequence[grpc.ServerInterceptor]] = None,
106106
**kwargs: P.kwargs,
@@ -121,7 +121,7 @@ def _wrap_async_server(func: Callable[P, AsyncServer]) -> Callable[P, AsyncServe
121121
"""Wrapper for asynchronous server."""
122122

123123
@wraps(func)
124-
def patched_aio_server(
124+
def patched_aio_server( # type: ignore
125125
*args: P.args,
126126
interceptors: Optional[Sequence[grpc.ServerInterceptor]] = None,
127127
**kwargs: P.kwargs,

0 commit comments

Comments
 (0)