Skip to content

Commit 02ef910

Browse files
committed
ruff
Signed-off-by: Filinto Duran <[email protected]>
1 parent 4eb8a9f commit 02ef910

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

durabletask/aio/internal/shared.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) The Dapr Authors.
22
# Licensed under the MIT License.
33

4-
from typing import Any, Dict, Optional, Sequence, Union
4+
from typing import Dict, Optional, Sequence, Union
55

66
import grpc
77
from grpc import aio as grpc_aio
@@ -52,7 +52,9 @@ def get_grpc_aio_channel(
5252
break
5353

5454
# channel interceptors/options
55-
channel_kwargs: Dict[str, ChannelArgumentType | Sequence[ClientInterceptor]] = dict(interceptors=interceptors)
55+
channel_kwargs: Dict[str, ChannelArgumentType | Sequence[ClientInterceptor]] = dict(
56+
interceptors=interceptors
57+
)
5658
if options is not None:
5759
validate_grpc_options(options)
5860
channel_kwargs["options"] = options

0 commit comments

Comments
 (0)