Skip to content

Commit 94aa41b

Browse files
committed
fix: linting
1 parent 6287665 commit 94aa41b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/strands/tools/mcp/mcp_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ async def _list_tools_async() -> ListToolsResult:
164164
mcp_tools = [MCPAgentTool(tool, self) for tool in list_tools_response.tools]
165165
self._log_debug_with_thread("successfully adapted %d MCP tools", len(mcp_tools))
166166
return PaginatedList[MCPAgentTool](mcp_tools, token=list_tools_response.nextCursor)
167-
167+
168168
def list_prompts_sync(self, pagination_token: Optional[str] = None) -> ListPromptsResult:
169169
"""Synchronously retrieves the list of available prompts from the MCP server.
170170

tests/strands/tools/mcp/test_mcp_client.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,3 @@ def test_get_prompt_sync_session_not_active():
399399

400400
with pytest.raises(MCPClientInitializationError, match="client session is not running"):
401401
client.get_prompt_sync("test_prompt_id", {})
402-
403-
404-

0 commit comments

Comments
 (0)