From f85dc20e13cd849d3a8f4cc3ab5047d4a040b3af Mon Sep 17 00:00:00 2001 From: Alexander Schlemmer <alexander@mail-schlemmer.de> Date: Tue, 1 Nov 2022 10:10:58 +0100 Subject: [PATCH] DOC: added note about the possibility of mixed cases --- src/caosdb/apiutils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/caosdb/apiutils.py b/src/caosdb/apiutils.py index 9090109f..9d2f3c4c 100644 --- a/src/caosdb/apiutils.py +++ b/src/caosdb/apiutils.py @@ -297,6 +297,7 @@ def compare_entities(old_entity: Entity, new_entity: Entity, compare_referenced_ # list of references elif isinstance(prop.value, list) and isinstance(matching[0].value, list): # all elements in both lists actually are entity objects + # TODO: check, whether mixed cases can be allowed or should lead to an error if all([isinstance(x, Entity) for x in prop.value]) and all([isinstance(x, Entity) for x in matching[0].value]): # can't be the same if the lengths are different if len(prop.value) == len(matching[0].value): -- GitLab