From cf9fdff72e752debc2b003af9f343c02c05e83bb Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Mon, 6 Apr 2026 14:38:05 -0700 Subject: [PATCH] fix(types): close unclosed paren on budget_limits field in TeamBase --- litellm/proxy/_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index 12b0c542589..ff296e68b61 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -1763,6 +1763,7 @@ class UpdateTeamRequest(LiteLLMPydanticObjectBase): access_group_ids: Optional[List[str]] = None budget_limits: Optional[List[BudgetLimitEntry]] = ( None # multiple concurrent budget windows + ) default_team_member_models: Optional[List[str]] = ( None # default allowed_models seeded onto new team members )