From ca6b086e7571551423f6b16e07dde506cbf587bb Mon Sep 17 00:00:00 2001 From: Anubhav Dhawan Date: Fri, 11 Apr 2025 12:16:00 +0530 Subject: [PATCH] chore: Remove unused variable --- packages/toolbox-core/src/toolbox_core/client.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/toolbox-core/src/toolbox_core/client.py b/packages/toolbox-core/src/toolbox_core/client.py index 64497b80..bc8ca23c 100644 --- a/packages/toolbox-core/src/toolbox_core/client.py +++ b/packages/toolbox-core/src/toolbox_core/client.py @@ -65,11 +65,9 @@ def __parse_tool( params = [] authn_params: dict[str, list[str]] = {} bound_params: dict[str, Callable[[], str]] = {} - auth_sources: set[str] = set() for p in schema.parameters: if p.authSources: # authn parameter authn_params[p.name] = p.authSources - auth_sources.update(p.authSources) elif p.name in all_bound_params: # bound parameter bound_params[p.name] = all_bound_params[p.name] else: # regular parameter