Skip to content

Commit 7412f19

Browse files
committed
chore: Delint
1 parent aba8cdd commit 7412f19

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

packages/toolbox-langchain/tests/test_async_tools.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -327,12 +327,9 @@ async def test_toolbox_tool_call_with_auth_tokens_insecure(
327327
result = await tool_with_getter.ainvoke({"param2": 123})
328328
assert result == "test-result"
329329

330-
modified_core_tool_in_new_tool = (
331-
tool_with_getter._AsyncToolboxTool__core_tool
332-
)
330+
modified_core_tool_in_new_tool = tool_with_getter._AsyncToolboxTool__core_tool
333331
assert (
334-
modified_core_tool_in_new_tool._ToolboxTool__base_url
335-
== "http://test-url"
332+
modified_core_tool_in_new_tool._ToolboxTool__base_url == "http://test-url"
336333
)
337334
assert (
338335
modified_core_tool_in_new_tool._ToolboxTool__url

0 commit comments

Comments
 (0)