File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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-
You can’t perform that action at this time.
0 commit comments