Skip to content

Commit bddc8b5

Browse files
authored
chore: Remove unused variable (#171)
1 parent 10dd1df commit bddc8b5

File tree

1 file changed

+0
-2
lines changed
  • packages/toolbox-core/src/toolbox_core

1 file changed

+0
-2
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,9 @@ def __parse_tool(
6565
params = []
6666
authn_params: dict[str, list[str]] = {}
6767
bound_params: dict[str, Callable[[], str]] = {}
68-
auth_sources: set[str] = set()
6968
for p in schema.parameters:
7069
if p.authSources: # authn parameter
7170
authn_params[p.name] = p.authSources
72-
auth_sources.update(p.authSources)
7371
elif p.name in all_bound_params: # bound parameter
7472
bound_params[p.name] = all_bound_params[p.name]
7573
else: # regular parameter

0 commit comments

Comments
 (0)