Skip to content
Snippets Groups Projects

Release 0.11.2

Merged Henrik tom Wörden requested to merge release-0.11.2 into main
7 files
+ 19
10
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 3
1
@@ -43,6 +43,8 @@ from caosdb.common.models import (Container, Entity, File, Property, Query,
@@ -43,6 +43,8 @@ from caosdb.common.models import (Container, Entity, File, Property, Query,
get_config, SPECIAL_ATTRIBUTES)
get_config, SPECIAL_ATTRIBUTES)
from caosdb.exceptions import CaosDBException
from caosdb.exceptions import CaosDBException
 
logger = logging.getLogger(__name__)
 
class EntityMergeConflictError(CaosDBException):
class EntityMergeConflictError(CaosDBException):
"""An error that is raised in case of an unresolvable conflict when merging
"""An error that is raised in case of an unresolvable conflict when merging
@@ -413,7 +415,7 @@ def merge_entities(entity_a: Entity, entity_b: Entity, merge_references_with_emp
@@ -413,7 +415,7 @@ def merge_entities(entity_a: Entity, entity_b: Entity, merge_references_with_emp
"""
"""
logging.warning(
logger.warning(
"This function is currently experimental and insufficiently tested. Use with care.")
"This function is currently experimental and insufficiently tested. Use with care.")
# Compare both entities:
# Compare both entities:
Loading