Skip to content

Commit c71aeea

Browse files
committed
Fix import formatting with ruff
1 parent b2838e8 commit c71aeea

File tree

1 file changed

+1
-3
lines changed
  • examples/clients/simple-chatbot/mcp_simple_chatbot

1 file changed

+1
-3
lines changed

examples/clients/simple-chatbot/mcp_simple_chatbot/main.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
import httpx
1010
from dotenv import load_dotenv
11-
1211
from mcp import ClientSession, StdioServerParameters
1312
from mcp.client.stdio import stdio_client
1413

@@ -324,8 +323,7 @@ async def process_llm_response(self, llm_response: str) -> str:
324323
total = result["total"]
325324
percentage = (progress / total) * 100
326325
logging.info(
327-
f"Progress: {progress}/{total} "
328-
f"({percentage:.1f}%)"
326+
f"Progress: {progress}/{total} ({percentage:.1f}%)"
329327
)
330328

331329
return f"Tool execution result: {result}"

0 commit comments

Comments
 (0)