From 63050089cb806c56f6d7c6328db0f504abfc464c Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 21 Feb 2026 09:35:39 -0800 Subject: [PATCH] fix: use explicit re-export for router in policy_endpoints __init__ --- litellm/proxy/management_endpoints/policy_endpoints/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/management_endpoints/policy_endpoints/__init__.py b/litellm/proxy/management_endpoints/policy_endpoints/__init__.py index 8486a5660ac..a50c49865be 100644 --- a/litellm/proxy/management_endpoints/policy_endpoints/__init__.py +++ b/litellm/proxy/management_endpoints/policy_endpoints/__init__.py @@ -9,5 +9,5 @@ are imported directly into this namespace. from litellm.proxy.management_endpoints.policy_endpoints.endpoints import * # noqa: F401, F403 from litellm.proxy.management_endpoints.policy_endpoints.endpoints import ( - router, + router as router, )