Skip to content

Commit 34497fd

Browse files
committed
chore: Delint
1 parent 9327630 commit 34497fd

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

packages/toolbox-langchain/tests/test_tools.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -318,19 +318,19 @@ async def to_thread_side_effect(func, *args, **kwargs_for_func):
318318
assert mock_core_tool.call_args == call(**kwargs_to_run)
319319

320320
def test_toolbox_tool_properties(self, toolbox_tool, mock_core_tool):
321-
"""Tests that the properties correctly proxy to the core tool."""
322-
assert toolbox_tool._bound_params == mock_core_tool._bound_params
323-
assert (
324-
toolbox_tool._required_authn_params == mock_core_tool._required_authn_params
325-
)
326-
assert (
327-
toolbox_tool._required_authz_tokens == mock_core_tool._required_authz_tokens
328-
)
329-
assert (
330-
toolbox_tool._auth_service_token_getters
331-
== mock_core_tool._auth_service_token_getters
332-
)
333-
assert toolbox_tool._client_headers == mock_core_tool._client_headers
321+
"""Tests that the properties correctly proxy to the core tool."""
322+
assert toolbox_tool._bound_params == mock_core_tool._bound_params
323+
assert (
324+
toolbox_tool._required_authn_params == mock_core_tool._required_authn_params
325+
)
326+
assert (
327+
toolbox_tool._required_authz_tokens == mock_core_tool._required_authz_tokens
328+
)
329+
assert (
330+
toolbox_tool._auth_service_token_getters
331+
== mock_core_tool._auth_service_token_getters
332+
)
333+
assert toolbox_tool._client_headers == mock_core_tool._client_headers
334334

335335
def test_toolbox_tool_add_auth_tokens_deprecated(
336336
self, auth_toolbox_tool, mock_core_sync_auth_tool
@@ -360,4 +360,4 @@ def test_toolbox_tool_add_auth_token_deprecated(
360360
mock_core_sync_auth_tool.add_auth_token_getters.assert_called_once_with(
361361
{"test-auth-source": get_id_token}
362362
)
363-
assert isinstance(new_tool, ToolboxTool)
363+
assert isinstance(new_tool, ToolboxTool)

0 commit comments

Comments
 (0)