Skip to content

Commit

Permalink
fix(proxy_server.py): fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
krrishdholakia committed Jan 21, 2025
1 parent eebf3b9 commit 3086804
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions litellm/proxy/proxy_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -6646,10 +6646,7 @@ async def model_info_v1( # noqa: PLR0915
},
)
_deployment_info_dict = _get_proxy_model_info(
model=cast(
dict,
DeploymentTypedDict(**deployment_info.model_dump(exclude_none=True)),
)
model=deployment_info.model_dump(exclude_none=True)
)
return {"data": [_deployment_info_dict]}

Expand Down

0 comments on commit 3086804

Please sign in to comment.