Skip to content

Commit 4738f4d

Browse files
committed
chore: Unpack tuple instead of index it
This makes it more readable.
1 parent fffd634 commit 4738f4d

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ def __parse_tool(
7979
else: # regular parameter
8080
params.append(p)
8181

82-
authn_params = identify_required_authn_params(
82+
authn_params, _ = identify_required_authn_params(
8383
authn_params, auth_token_getters.keys()
84-
)[0]
84+
)
8585

8686
tool = ToolboxTool(
8787
session=self.__session,

0 commit comments

Comments
 (0)