File tree Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -2002,7 +2002,7 @@ async def query(
20022002 """Query the workflow.
20032003
20042004 This will query for :py:attr:`run_id` if present. To use a different
2005- run ID, create a new handle with via
2005+ run ID, create a new handle with
20062006 :py:meth:`Client.get_workflow_handle`.
20072007
20082008 .. warning::
Original file line number Diff line number Diff line change @@ -184,19 +184,23 @@ def _to_bridge_config(self) -> temporalio.bridge.client.ClientConfig:
184184 target_url = target_url ,
185185 api_key = self .api_key ,
186186 tls_config = tls_config ,
187- retry_config = self .retry_config ._to_bridge_config ()
188- if self .retry_config
189- else None ,
190- keep_alive_config = self .keep_alive_config ._to_bridge_config ()
191- if self .keep_alive_config
192- else None ,
187+ retry_config = (
188+ self .retry_config ._to_bridge_config () if self .retry_config else None
189+ ),
190+ keep_alive_config = (
191+ self .keep_alive_config ._to_bridge_config ()
192+ if self .keep_alive_config
193+ else None
194+ ),
193195 metadata = self .rpc_metadata ,
194196 identity = self .identity ,
195197 client_name = "temporal-python" ,
196198 client_version = __version__ ,
197- http_connect_proxy_config = self .http_connect_proxy_config ._to_bridge_config ()
198- if self .http_connect_proxy_config
199- else None ,
199+ http_connect_proxy_config = (
200+ self .http_connect_proxy_config ._to_bridge_config ()
201+ if self .http_connect_proxy_config
202+ else None
203+ ),
200204 )
201205
202206
You can’t perform that action at this time.
0 commit comments