From 5bcc23014e8e64ea07a7e9259e06ef86b6e051d8 Mon Sep 17 00:00:00 2001 From: yassin Date: Mon, 14 Sep 2026 19:12:35 +0000 Subject: [PATCH] refactor(auth): drop the membership fetch docstring Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm/proxy/auth/auth_checks.py | 1 - 1 file changed, 1 deletion(-) diff --git a/litellm/proxy/auth/auth_checks.py b/litellm/proxy/auth/auth_checks.py index a8f9cc77577..fa85400f4e0 100644 --- a/litellm/proxy/auth/auth_checks.py +++ b/litellm/proxy/auth/auth_checks.py @@ -2197,7 +2197,6 @@ async def _fetch_team_membership_from_db( parent_otel_span: Span | None = None, proxy_logging_obj: ProxyLogging | None = None, ) -> LiteLLM_TeamMembership | None: - """Prisma read + cache populate. Decorated so cache hits on ``get_team_membership`` are not postgres spans.""" _ = parent_otel_span, proxy_logging_obj response: Final = await _dictable_table(TeamMembershipRepository(prisma_client)).find_unique( where={"user_id_team_id": {"user_id": user_id, "team_id": team_id}},