From 38586e9684a66f97a926fa5baae404e97af8ee50 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 17 Sep 2026 23:46:32 +0000 Subject: [PATCH] refactor(proxy): drop redundant docstring from organization key cleanup helper Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm/proxy/management_endpoints/organization_endpoints.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/litellm/proxy/management_endpoints/organization_endpoints.py b/litellm/proxy/management_endpoints/organization_endpoints.py index 22933acea27..29c31cc9c18 100644 --- a/litellm/proxy/management_endpoints/organization_endpoints.py +++ b/litellm/proxy/management_endpoints/organization_endpoints.py @@ -1025,8 +1025,6 @@ async def _delete_organization_keys( user_api_key_cache: UserApiKeyCache, proxy_logging_obj: ProxyLogging | None, ) -> None: - """Delete the organization's keys and drop every cache entry that still resolves to them, - including the jwt_key_mapping entries the FK cascade removes from the table but not from the cache.""" key_filter: Final[_OrganizationIdFilter] = {"organization_id": organization_id} keys_to_delete: Final = await _table(VerificationTokenRepository(prisma_client)).find_many(where=key_filter) hashed_tokens_to_delete: Final = tuple(key.token for key in keys_to_delete)