File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed 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