File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/toolbox-core/src/toolbox_core Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -286,11 +286,11 @@ def add_auth_token_getters(
286
286
)
287
287
288
288
# create a read-only updated value for new_getters
289
- new_getters = types . MappingProxyType (
289
+ new_getters = MappingProxyType (
290
290
dict (self .__auth_service_token_getters , ** auth_token_getters )
291
291
)
292
292
# create a read-only updated for params that are still required
293
- new_req_authn_params = types . MappingProxyType (
293
+ new_req_authn_params = MappingProxyType (
294
294
identify_required_authn_params (
295
295
self .__required_authn_params , auth_token_getters .keys ()
296
296
)
@@ -328,5 +328,5 @@ def bind_parameters(
328
328
329
329
return self .__copy (
330
330
params = new_params ,
331
- bound_params = types . MappingProxyType (all_bound_params ),
331
+ bound_params = MappingProxyType (all_bound_params ),
332
332
)
You can’t perform that action at this time.
0 commit comments