mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 03:04:13 +00:00
fix: fix linting error
This commit is contained in:
parent
c568952490
commit
2e5146855e
1 changed files with 2 additions and 2 deletions
|
@ -6182,8 +6182,8 @@ async def model_info_v1( # noqa: PLR0915
|
||||||
else:
|
else:
|
||||||
all_models = []
|
all_models = []
|
||||||
|
|
||||||
for model in all_models:
|
for in_place_model in all_models:
|
||||||
model = _get_proxy_model_info(model=model)
|
in_place_model = _get_proxy_model_info(model=in_place_model)
|
||||||
|
|
||||||
verbose_proxy_logger.debug("all_models: %s", all_models)
|
verbose_proxy_logger.debug("all_models: %s", all_models)
|
||||||
return {"data": all_models}
|
return {"data": all_models}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue