Skip to content

Commit ebcdf1b

Browse files
committed
fix bad positional arg after keyword arg
Signed-off-by: Filinto Duran <[email protected]>
1 parent cd7f34c commit ebcdf1b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dapr/aio/clients/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ def __init__(
9292
if http_timeout_seconds is None:
9393
http_timeout_seconds = settings.DAPR_HTTP_TIMEOUT_SECONDS
9494
self.invocation_client = DaprInvocationHttpClient(
95-
headers_callback=headers_callback, timeout=http_timeout_seconds, api_token
95+
headers_callback=headers_callback,
96+
timeout=http_timeout_seconds,
97+
api_token=api_token,
9698
)
9799
elif invocation_protocol == 'GRPC':
98100
pass

0 commit comments

Comments
 (0)