diff --git a/litellm/proxy/proxy_cli.py b/litellm/proxy/proxy_cli.py index 55a222c77b4..126c2914c74 100644 --- a/litellm/proxy/proxy_cli.py +++ b/litellm/proxy/proxy_cli.py @@ -1152,10 +1152,6 @@ def run_server( if general_settings is None: general_settings = {} elif not isinstance(general_settings, dict): - # A non-dict `general_settings` (e.g. a bare string from a - # malformed YAML block) otherwise surfaces as a cryptic - # `AttributeError: 'str' object has no attribute 'get'` deep in - # startup. Fail fast with a message that points at the config. raise ValueError( "`general_settings` in the proxy config must be a mapping " f"(got {type(general_settings).__name__}). Check the "