From 625272929aceceda958e8a45dff4240aaa5c0743 Mon Sep 17 00:00:00 2001 From: mateo Date: Fri, 21 Aug 2026 03:30:57 +0000 Subject: [PATCH] style: apply ruff format to custom rbac endpoints Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- .../proxy/management_endpoints/custom_rbac_role_endpoints.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/litellm/proxy/management_endpoints/custom_rbac_role_endpoints.py b/litellm/proxy/management_endpoints/custom_rbac_role_endpoints.py index 938990f381d..33f9b0619b5 100644 --- a/litellm/proxy/management_endpoints/custom_rbac_role_endpoints.py +++ b/litellm/proxy/management_endpoints/custom_rbac_role_endpoints.py @@ -97,8 +97,7 @@ async def _reject_unknown_inherits( known: Final = ( frozenset(role.role_name for role in get_config_custom_rbac_roles()) | frozenset( - str(record.dict()["role_name"]) - for record in await table.find_many(order=prisma_args(_ORDER_BY_ROLE_NAME)) + str(record.dict()["role_name"]) for record in await table.find_many(order=prisma_args(_ORDER_BY_ROLE_NAME)) ) | frozenset((role_name,)) )