Consistent docstring indentation (#30834)

Should be 4 spaces instead of 3.
This commit is contained in:
William FH 2025-04-14 19:04:35 -07:00 committed by GitHub
parent 2282762528
commit ed5c4805f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -875,10 +875,10 @@ class Runnable(Generic[Input, Output], ABC):
Args: Args:
inputs: A list of inputs to the Runnable. inputs: A list of inputs to the Runnable.
config: A config to use when invoking the Runnable. config: A config to use when invoking the Runnable.
The config supports standard keys like 'tags', 'metadata' for tracing The config supports standard keys like 'tags', 'metadata' for tracing
purposes, 'max_concurrency' for controlling how much work to do purposes, 'max_concurrency' for controlling how much work to do
in parallel, and other keys. Please refer to the RunnableConfig in parallel, and other keys. Please refer to the RunnableConfig
for more details. Defaults to None. for more details. Defaults to None.
return_exceptions: Whether to return exceptions instead of raising them. return_exceptions: Whether to return exceptions instead of raising them.
Defaults to False. Defaults to False.
kwargs: Additional keyword arguments to pass to the Runnable. kwargs: Additional keyword arguments to pass to the Runnable.
@ -940,10 +940,10 @@ class Runnable(Generic[Input, Output], ABC):
Args: Args:
inputs: A list of inputs to the Runnable. inputs: A list of inputs to the Runnable.
config: A config to use when invoking the Runnable. config: A config to use when invoking the Runnable.
The config supports standard keys like 'tags', 'metadata' for tracing The config supports standard keys like 'tags', 'metadata' for tracing
purposes, 'max_concurrency' for controlling how much work to do purposes, 'max_concurrency' for controlling how much work to do
in parallel, and other keys. Please refer to the RunnableConfig in parallel, and other keys. Please refer to the RunnableConfig
for more details. Defaults to None. Defaults to None. for more details. Defaults to None. Defaults to None.
return_exceptions: Whether to return exceptions instead of raising them. return_exceptions: Whether to return exceptions instead of raising them.
Defaults to False. Defaults to False.
kwargs: Additional keyword arguments to pass to the Runnable. kwargs: Additional keyword arguments to pass to the Runnable.