From 4f99996b8e799a39c8ebc8d0691e13b817e51e07 Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Wed, 2 Sep 2026 16:23:52 -0700 Subject: [PATCH] style(cost): wrap an overlong docstring line in ocr_cost The Returns line of the ocr_cost docstring ran to 126 columns, past the repo's 120-column limit. Wrapped it; no behavior change. --- litellm/cost_calculator.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/litellm/cost_calculator.py b/litellm/cost_calculator.py index 9bff4a0846d..5c97f93ce85 100644 --- a/litellm/cost_calculator.py +++ b/litellm/cost_calculator.py @@ -1901,7 +1901,8 @@ def ocr_cost( response: Optional[Any] - response object Returns: - Tuple[float, float]: (prompt cost, completion cost) when priced per token, otherwise the page cost in the first element + Tuple[float, float]: (prompt cost, completion cost) when priced per token, + otherwise the page cost in the first element """ from litellm.llms.base_llm.ocr.transformation import OCRResponse