Skip to content

Commit 513c2e2

Browse files
committed
chore: Delint
1 parent 3e73c4b commit 513c2e2

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
@@ -301,7 +301,9 @@ def bind_params(
301301
)
302302

303303
if name not in param_names:
304-
raise ValueError(f"unable to bind parameters: no parameter named {name}")
304+
raise ValueError(
305+
f"unable to bind parameters: no parameter named {name}"
306+
)
305307

306308
new_params = []
307309
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)