style: ruff format mcp_server.py (CI lint)

This commit is contained in:
Igor Lins e Silva
2026-05-06 01:54:24 -03:00
parent 7b49478ef7
commit 74288f1cdd
+5 -1
View File
@@ -2053,7 +2053,11 @@ def handle_request(request):
return { return {
"jsonrpc": "2.0", "jsonrpc": "2.0",
"id": req_id, "id": req_id,
"result": {"content": [{"type": "text", "text": json.dumps(result, indent=2, ensure_ascii=False)}]}, "result": {
"content": [
{"type": "text", "text": json.dumps(result, indent=2, ensure_ascii=False)}
]
},
} }
except Exception: except Exception:
logger.exception(f"Tool error in {tool_name}") logger.exception(f"Tool error in {tool_name}")