Skip to content

Commit 3520277

Browse files
committed
lint
1 parent 8023460 commit 3520277

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/toolbox-core/tests/test_client.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,11 @@ async def test_load_tool_success(aioresponses, test_tool_str):
9292
assert callable(loaded_tool)
9393
# Assert introspection attributes are set correctly
9494
assert loaded_tool.__name__ == TOOL_NAME
95-
assert loaded_tool.__doc__ == test_tool_str.description + f"\n\nArgs:\n param1 (string): Description of Param1"
95+
assert (
96+
loaded_tool.__doc__
97+
== test_tool_str.description
98+
+ f"\n\nArgs:\n param1 (string): Description of Param1"
99+
)
96100

97101
# Assert signature inspection
98102
sig = inspect.signature(loaded_tool)

0 commit comments

Comments
 (0)