Skip to content

Commit 6329ae2

Browse files
committed
chore: Delint
1 parent d2a0b39 commit 6329ae2

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,9 @@ def bind_params(
329329
)
330330

331331
if name not in param_names:
332-
raise ValueError(f"unable to bind parameters: no parameter named {name}")
332+
raise ValueError(
333+
f"unable to bind parameters: no parameter named {name}"
334+
)
333335

334336
new_params = []
335337
for p in self.__params:

packages/toolbox-core/tests/test_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,9 @@ async def test_load_tool_not_found_in_manifest(aioresponses, test_tool_str):
266266
)
267267

268268
async with ToolboxClient(TEST_BASE_URL) as client:
269-
with pytest.raises(ValueError, match=f"Tool '{REQUESTED_TOOL_NAME}' not found!"):
269+
with pytest.raises(
270+
ValueError, match=f"Tool '{REQUESTED_TOOL_NAME}' not found!"
271+
):
270272
await client.load_tool(REQUESTED_TOOL_NAME)
271273

272274
aioresponses.assert_called_once_with(

0 commit comments

Comments
 (0)