Skip to content

Commit f6301bd

Browse files
committed
chore: Delint
1 parent 4ffff56 commit f6301bd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/toolbox-core/tests/test_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,9 @@ async def test_rebind_param_fail(self, tool_name, client):
460460
with pytest.raises(ValueError) as e:
461461
tool_with_bound_param.bind_parameters({"argA": lambda: 20})
462462

463-
assert "cannot re-bind parameter: parameter 'argA' is already bound" in str(e.value)
463+
assert "cannot re-bind parameter: parameter 'argA' is already bound" in str(
464+
e.value
465+
)
464466

465467
@pytest.mark.asyncio
466468
async def test_bind_param_static_value_success(self, tool_name, client):

0 commit comments

Comments
 (0)