Skip to content

Commit 6c332e0

Browse files
committed
fix
1 parent db29a61 commit 6c332e0

File tree

1 file changed

+3
-3
lines changed
  • packages/toolbox-core/src/toolbox_core

1 file changed

+3
-3
lines changed

packages/toolbox-core/src/toolbox_core/tool.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,11 @@ def add_auth_token_getters(
286286
)
287287

288288
# create a read-only updated value for new_getters
289-
new_getters = types.MappingProxyType(
289+
new_getters = MappingProxyType(
290290
dict(self.__auth_service_token_getters, **auth_token_getters)
291291
)
292292
# create a read-only updated for params that are still required
293-
new_req_authn_params = types.MappingProxyType(
293+
new_req_authn_params = MappingProxyType(
294294
identify_required_authn_params(
295295
self.__required_authn_params, auth_token_getters.keys()
296296
)
@@ -328,5 +328,5 @@ def bind_parameters(
328328

329329
return self.__copy(
330330
params=new_params,
331-
bound_params=types.MappingProxyType(all_bound_params),
331+
bound_params=MappingProxyType(all_bound_params),
332332
)

0 commit comments

Comments
 (0)