From ef25ecb68eaf1509b45e4a20e922498e9540df19 Mon Sep 17 00:00:00 2001 From: shivam Date: Sat, 7 Feb 2026 18:21:33 -0800 Subject: [PATCH] fixed user id --- litellm/proxy/management_endpoints/key_management_endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/management_endpoints/key_management_endpoints.py b/litellm/proxy/management_endpoints/key_management_endpoints.py index 48e0c32880b..099c4543362 100644 --- a/litellm/proxy/management_endpoints/key_management_endpoints.py +++ b/litellm/proxy/management_endpoints/key_management_endpoints.py @@ -3760,7 +3760,7 @@ async def list_keys( else: admin_team_ids = None - if user_id is None and user_api_key_dict.user_role not in [ + if not user_id and user_api_key_dict.user_role not in [ LitellmUserRoles.PROXY_ADMIN.value, LitellmUserRoles.PROXY_ADMIN_VIEW_ONLY.value, ]: