File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -550,12 +550,12 @@ def get_entity_node_from_record(record: Any) -> EntityNode:
550550 attributes = record ['attributes' ],
551551 )
552552
553- del entity_node .attributes [ 'uuid' ]
554- del entity_node .attributes [ 'name' ]
555- del entity_node .attributes [ 'group_id' ]
556- del entity_node .attributes [ 'name_embedding' ]
557- del entity_node .attributes [ 'summary' ]
558- del entity_node .attributes [ 'created_at' ]
553+ entity_node .attributes . pop ( 'uuid' , None )
554+ entity_node .attributes . pop ( 'name' , None )
555+ entity_node .attributes . pop ( 'group_id' , None )
556+ entity_node .attributes . pop ( 'name_embedding' , None )
557+ entity_node .attributes . pop ( 'summary' , None )
558+ entity_node .attributes . pop ( 'created_at' , None )
559559
560560 return entity_node
561561
Original file line number Diff line number Diff line change 11[project ]
22name = " graphiti-core"
33description = " A temporal graph building library"
4- version = " 0.10.0 "
4+ version = " 0.10.1 "
55authors = [
66 {
"name" =
" Paul Paliychuk" ,
"email" =
" [email protected] " },
77 {
"name" =
" Preston Rasmussen" ,
"email" =
" [email protected] " },
You can’t perform that action at this time.
0 commit comments