From 7966af1e9c9c7106b8540b50075b8bbe8bf3a214 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Mon, 28 Aug 2023 17:37:43 +0200 Subject: [PATCH] Lint --- libs/langchain/langchain/schema/runnable/base.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/libs/langchain/langchain/schema/runnable/base.py b/libs/langchain/langchain/schema/runnable/base.py index 7d65f0d461..f428dcdf1d 100644 --- a/libs/langchain/langchain/schema/runnable/base.py +++ b/libs/langchain/langchain/schema/runnable/base.py @@ -417,8 +417,6 @@ class Runnable(Generic[Input, Output], ABC): output = func(input, run_manager=run_managers) # type: ignore[call-arg] else: output = func(input) # type: ignore[call-arg] - - print("output", output) except Exception as e: for run_manager in run_managers: run_manager.on_chain_error(e) @@ -489,7 +487,6 @@ class Runnable(Generic[Input, Output], ABC): output = await func(input, run_manager=run_managers) # type: ignore else: output = await func(input) # type: ignore[call-arg] - print("output", output) except Exception as e: await asyncio.gather( *(run_manager.on_chain_error(e) for run_manager in run_managers)