mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
linting
This commit is contained in:
parent
90dc0e9120
commit
ff7713fd48
1 changed files with 1 additions and 1 deletions
|
|
@ -3015,7 +3015,7 @@ def _convert_teams_to_response(
|
|||
teams: List[Any], use_deleted_table: bool
|
||||
) -> List[Union[LiteLLM_TeamTable, LiteLLM_DeletedTeamTable]]:
|
||||
"""Convert Prisma models to Pydantic models."""
|
||||
team_list = []
|
||||
team_list: List[Union[LiteLLM_TeamTable, LiteLLM_DeletedTeamTable]] = []
|
||||
if teams:
|
||||
for team in teams:
|
||||
# Convert Prisma model to dict (supports both Pydantic v1 and v2)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue