From a8aedd704d57912364e59f74bceb1c8f2a706429 Mon Sep 17 00:00:00 2001 From: shivam Date: Thu, 10 Sep 2026 23:50:29 +0000 Subject: [PATCH] style(proxy): remove redundant cache clear comment Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm/proxy/management_endpoints/model_management_endpoints.py | 1 - 1 file changed, 1 deletion(-) diff --git a/litellm/proxy/management_endpoints/model_management_endpoints.py b/litellm/proxy/management_endpoints/model_management_endpoints.py index b3767d0113a..25808dd4e83 100644 --- a/litellm/proxy/management_endpoints/model_management_endpoints.py +++ b/litellm/proxy/management_endpoints/model_management_endpoints.py @@ -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: