File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -459,24 +459,22 @@ async def create_node(
459459 remaining_rels .append (key )
460460 elif not rel_info .is_reference and not rel_info .is_mandatory :
461461 if rel_info .format == RelationshipDataFormat .ONE_OBJ :
462- expanded_data = expand_data_with_ranges (data = [value ])
463462 nodes = await cls .create_related_nodes (
464463 client = client ,
465464 position = position ,
466465 rel_info = rel_info ,
467- data = expanded_data ,
466+ data = value ,
468467 branch = branch ,
469468 default_schema_kind = default_schema_kind ,
470469 )
471470 clean_data [key ] = nodes [0 ]
472471
473472 else :
474- expanded_data = expand_data_with_ranges (data = value )
475473 nodes = await cls .create_related_nodes (
476474 client = client ,
477475 position = position ,
478476 rel_info = rel_info ,
479- data = expanded_data ,
477+ data = value ,
480478 branch = branch ,
481479 default_schema_kind = default_schema_kind ,
482480 )
You can’t perform that action at this time.
0 commit comments