Skip to content

Commit eb5630d

Browse files
committed
chore: Delint
1 parent d333849 commit eb5630d

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
@@ -392,7 +392,9 @@ async def test_bind_param_fail_on_rebind(self, tool_name, client):
392392
assert "argA" not in bound_tool_once.__signature__.parameters
393393
assert "argB" in bound_tool_once.__signature__.parameters
394394

395-
expected_error_msg = "cannot re-bind parameter: parameter 'argA' is already bound"
395+
expected_error_msg = (
396+
"cannot re-bind parameter: parameter 'argA' is already bound"
397+
)
396398
with pytest.raises(ValueError, match=expected_error_msg):
397399
bound_tool_once.bind_parameters({"argA": 10})
398400

0 commit comments

Comments
 (0)