mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
fix: formatter
This commit is contained in:
parent
5927a557fb
commit
d4483d8422
1 changed files with 1 additions and 3 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue