From 3f50196acf4adc7260c587206d8ae9e62cbed047 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Tue, 23 Sep 2025 14:40:11 -0700 Subject: [PATCH] test fix --- litellm/proxy/client/teams.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/client/teams.py b/litellm/proxy/client/teams.py index 61ddbe6adae..4f54b6bbd07 100644 --- a/litellm/proxy/client/teams.py +++ b/litellm/proxy/client/teams.py @@ -1,6 +1,6 @@ """Teams management client for LiteLLM proxy.""" -from typing import Any, Dict, List, Optional +from typing import Any, Dict, List, Optional, Union import requests @@ -99,7 +99,7 @@ class TeamsManagementClient: UnauthorizedError: If authentication fails """ url = f"{self._base_url}/v2/team/list" - params = { + params: Dict[str, Union[str, int]] = { "page": page, "page_size": page_size, "sort_order": sort_order,