From ed5c4805f64c41c07f92d3f6d5f75ee7dca10738 Mon Sep 17 00:00:00 2001 From: William FH <13333726+hinthornw@users.noreply.github.com> Date: Mon, 14 Apr 2025 19:04:35 -0700 Subject: [PATCH] Consistent docstring indentation (#30834) Should be 4 spaces instead of 3. --- libs/core/langchain_core/runnables/base.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libs/core/langchain_core/runnables/base.py b/libs/core/langchain_core/runnables/base.py index 272e9a4eb47..3b13ebcab4c 100644 --- a/libs/core/langchain_core/runnables/base.py +++ b/libs/core/langchain_core/runnables/base.py @@ -875,10 +875,10 @@ class Runnable(Generic[Input, Output], ABC): Args: inputs: A list of inputs to the Runnable. config: A config to use when invoking the Runnable. - The config supports standard keys like 'tags', 'metadata' for tracing - purposes, 'max_concurrency' for controlling how much work to do - in parallel, and other keys. Please refer to the RunnableConfig - for more details. Defaults to None. + The config supports standard keys like 'tags', 'metadata' for tracing + purposes, 'max_concurrency' for controlling how much work to do + in parallel, and other keys. Please refer to the RunnableConfig + for more details. Defaults to None. return_exceptions: Whether to return exceptions instead of raising them. Defaults to False. kwargs: Additional keyword arguments to pass to the Runnable. @@ -940,10 +940,10 @@ class Runnable(Generic[Input, Output], ABC): Args: inputs: A list of inputs to the Runnable. config: A config to use when invoking the Runnable. - The config supports standard keys like 'tags', 'metadata' for tracing - purposes, 'max_concurrency' for controlling how much work to do - in parallel, and other keys. Please refer to the RunnableConfig - for more details. Defaults to None. Defaults to None. + The config supports standard keys like 'tags', 'metadata' for tracing + purposes, 'max_concurrency' for controlling how much work to do + in parallel, and other keys. Please refer to the RunnableConfig + for more details. Defaults to None. Defaults to None. return_exceptions: Whether to return exceptions instead of raising them. Defaults to False. kwargs: Additional keyword arguments to pass to the Runnable.