style(proxy): remove redundant cache clear comment

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
shivam 2026-09-10 23:50:29 +00:00
parent d1e007415e
commit a8aedd704d

View file

@ -760,7 +760,6 @@ def update_db_model(db_model: Deployment, updated_patch: updateDeployment) -> Pr
# model_info fields like team_id or access groups. SPECIAL_MODEL_INFO_PARAMS are
# mirrored between litellm_params and model_info by Deployment.__init__, so the
# clear propagates to both blobs.
# CLEARABLE_LITELLM_PARAMS lists non-mirrored litellm_params that explicit null may clear.
if updated_patch.litellm_params:
for field in updated_patch.litellm_params.model_fields_set:
if getattr(updated_patch.litellm_params, field) is None and field in NULL_CLEARABLE_LITELLM_PARAMS: