mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-09 22:31:41 +00:00
style: add missing PEP 8 blank line before top-level function
This commit is contained in:
parent
9e1d83e3de
commit
dcbac4a4af
1 changed files with 1 additions and 0 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue