From 9e906c39ba974ae33d596174873a173b505648e9 Mon Sep 17 00:00:00 2001 From: Bagatur Date: Thu, 17 Aug 2023 16:22:22 -0700 Subject: [PATCH] nit --- libs/langchain/langchain/schema/runnable/locals.py | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/langchain/langchain/schema/runnable/locals.py b/libs/langchain/langchain/schema/runnable/locals.py index 65e63507bc4..5061dbf38c1 100644 --- a/libs/langchain/langchain/schema/runnable/locals.py +++ b/libs/langchain/langchain/schema/runnable/locals.py @@ -50,7 +50,6 @@ class PutLocalVar(RunnablePassthrough): "PutLocalVar should only be used in a RunnableSequence, and should " "therefore always receive a non-null config." ) - print(config) if isinstance(self.key, str): if self.key not in config["_locals"]: config["_locals"][self.key] = input