fix: formatter

This commit is contained in:
Yuta Saito 2026-01-09 17:31:30 +09:00
parent 5927a557fb
commit d4483d8422

View file

@ -698,9 +698,7 @@ class MCPServerManager:
results = await asyncio.gather(*tasks)
# Flatten results into single list
list_tools_result: List[MCPTool] = [
tool for tools in results for tool in tools
]
list_tools_result: List[MCPTool] = [tool for tools in results for tool in tools]
verbose_logger.info(
f"Successfully fetched {len(list_tools_result)} tools total from all servers"