File tree 1 file changed +13
-9
lines changed
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:
184
184
target_url = target_url ,
185
185
api_key = self .api_key ,
186
186
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
+ ),
193
195
metadata = self .rpc_metadata ,
194
196
identity = self .identity ,
195
197
client_name = "temporal-python" ,
196
198
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
+ ),
200
204
)
201
205
202
206
You can’t perform that action at this time.
0 commit comments