Skip to content

Commit 7cb78df

Browse files
committed
Small typing fix
1 parent 63b912e commit 7cb78df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/integrations/grpc/aio/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async def intercept_unary_stream(
7070
continuation: Callable[[ClientCallDetails, Message], UnaryStreamCall],
7171
client_call_details: ClientCallDetails,
7272
request: Message,
73-
) -> AsyncIterable[Any] | UnaryStreamCall:
73+
) -> Union[AsyncIterable[Any], UnaryStreamCall]:
7474
hub = Hub.current
7575
method = client_call_details.method
7676

0 commit comments

Comments
 (0)