This commit is contained in:
Bagatur
2024-01-23 19:51:57 -08:00
parent 0ffeecf218
commit 107bdd975e

View File

@@ -550,7 +550,7 @@ class Runnable(Generic[Input, Output], ABC):
inputs: List[Input],
config: Optional[Union[RunnableConfig, List[RunnableConfig]]] = None,
*,
return_exceptions: Literal[True] = True,
return_exceptions: Literal[True],
**kwargs: Optional[Any],
) -> List[Union[Output, BaseException]]:
...