style: add missing PEP 8 blank line before top-level function

This commit is contained in:
Ryan Crabbe 2026-02-21 13:31:19 -08:00
parent 9e1d83e3de
commit dcbac4a4af

View file

@ -23,6 +23,7 @@ from litellm.llms.custom_httpx.http_handler import (
get_ssl_configuration,
)
def _get_client_init_params(cls: type) -> Tuple[str, ...]:
"""Extract __init__ parameter names (excluding 'self') from a class."""
return tuple(p for p in inspect.signature(cls.__init__).parameters if p != "self") # type: ignore[misc]