mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-09 22:31:41 +00:00
test fix
This commit is contained in:
parent
bb6fb445c0
commit
3f50196acf
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue