From 754aca794f89b1cf118e35ac28d4a7ebcc1d1214 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Tue, 17 Oct 2023 08:46:07 +0100 Subject: [PATCH] remove print --- libs/langchain/langchain/schema/runnable/utils.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/libs/langchain/langchain/schema/runnable/utils.py b/libs/langchain/langchain/schema/runnable/utils.py index a5655b243df..cb1be68da4f 100644 --- a/libs/langchain/langchain/schema/runnable/utils.py +++ b/libs/langchain/langchain/schema/runnable/utils.py @@ -307,20 +307,6 @@ def get_unique_config_specs( for id, dupes in grouped: first = next(dupes) others = list(dupes) - if len(others) > 0: - print( - first, - others, - [ - ( - o.id == first.id, - o.annotation == first.annotation, - o.default == first.default, - o.name == first.name, - ) - for o in others - ], - ) if len(others) == 0: unique.append(first) elif all(o == first for o in others):