From 81a3eeeef6cb1623f435b455aa5b8e0feaea9752 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com>
Date: Wed, 28 Sep 2022 16:55:08 +0200
Subject: [PATCH] MAINT: remove debug output

---
 src/caosdb/apiutils.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/caosdb/apiutils.py b/src/caosdb/apiutils.py
index 88277209..e378b39f 100644
--- a/src/caosdb/apiutils.py
+++ b/src/caosdb/apiutils.py
@@ -340,7 +340,6 @@ def merge_entities(entity_a: Entity, entity_b: Entity):
             for attribute in ("datatype", "unit", "value"):
                 if (attribute in diff_r2["properties"][key] and
                         diff_r2["properties"][key][attribute] is not None):
-                    print(diff_r2["properties"][key][attribute])
                     if (diff_r1["properties"][key][attribute] is None):
                         setattr(entity_a.get_property(key), attribute,
                                 diff_r2["properties"][key][attribute])
-- 
GitLab