We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10dd1df commit bddc8b5Copy full SHA for bddc8b5
packages/toolbox-core/src/toolbox_core/client.py
@@ -65,11 +65,9 @@ def __parse_tool(
65
params = []
66
authn_params: dict[str, list[str]] = {}
67
bound_params: dict[str, Callable[[], str]] = {}
68
- auth_sources: set[str] = set()
69
for p in schema.parameters:
70
if p.authSources: # authn parameter
71
authn_params[p.name] = p.authSources
72
- auth_sources.update(p.authSources)
73
elif p.name in all_bound_params: # bound parameter
74
bound_params[p.name] = all_bound_params[p.name]
75
else: # regular parameter
0 commit comments