Skip to content

Commit 83eb39a

Browse files
committed
chore: Delint
1 parent d62d274 commit 83eb39a

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
@@ -444,7 +444,9 @@ async def test_bind_param_fail_on_rebind(self, tool_name, client):
444444
assert "argA" not in bound_tool_once.__signature__.parameters
445445
assert "argB" in bound_tool_once.__signature__.parameters
446446

447-
expected_error_msg = "cannot re-bind parameter: parameter 'argA' is already bound"
447+
expected_error_msg = (
448+
"cannot re-bind parameter: parameter 'argA' is already bound"
449+
)
448450
with pytest.raises(ValueError, match=expected_error_msg):
449451
bound_tool_once.bind_parameters({"argA": 10})
450452

0 commit comments

Comments
 (0)