From 056629e6abf321bc179cfb24dcf9628e701668e9 Mon Sep 17 00:00:00 2001 From: mateo Date: Thu, 13 Aug 2026 20:02:14 +0000 Subject: [PATCH] style: shorten noqa reason to satisfy ruff import sorting Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm/proxy/auth/auth_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/auth/auth_utils.py b/litellm/proxy/auth/auth_utils.py index ce0323f934e..4cc2f1a691b 100644 --- a/litellm/proxy/auth/auth_utils.py +++ b/litellm/proxy/auth/auth_utils.py @@ -325,7 +325,7 @@ _LLM_ROUTE_BANNED_REQUEST_BODY_PARAMS: Final[tuple[str, ...]] = ("api_key",) def _banned_params_for_route(route: str) -> tuple[str, ...]: - from litellm.proxy.auth.route_checks import RouteChecks # noqa: PLC0415 # auth_utils participates in a proxy import cycle + from litellm.proxy.auth.route_checks import RouteChecks # noqa: PLC0415 # proxy import cycle if RouteChecks.is_llm_api_route(route): return _BANNED_REQUEST_BODY_PARAMS + _LLM_ROUTE_BANNED_REQUEST_BODY_PARAMS