style(proxy): trim redundant validation comment

This commit is contained in:
linhongyu510 2026-08-29 14:40:33 +08:00
parent 08d05d5213
commit a9ba1222c5

View file

@ -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 "