From caa1552fb726e33d3a81d97620abd4fc4bdc202d Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Thu, 30 Jul 2026 12:44:36 +0000 Subject: [PATCH] style(proxy): collapse a line ruff format wants on one line Follow-up to the Any-typing cleanup: ruff format collapses this signature to fit under 120 chars once the return type shortened. --- litellm/proxy/utils.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 222103fe6f7..a25645ee282 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -802,9 +802,7 @@ class ProxyLogging: verbose_proxy_logger.error(f"Error in manual argument parsing: {e}") return None - def _convert_llm_result_to_mcp_during_response( - self, llm_result, request_obj - ) -> MCPDuringCallResponseObject | None: + def _convert_llm_result_to_mcp_during_response(self, llm_result, request_obj) -> MCPDuringCallResponseObject | None: """ Convert LLM guardrail result back to MCP during call response format. """