Skip to content

Commit

Permalink
Fix neo4j loader (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
cybermaggedon authored Nov 6, 2024
1 parent 2660b28 commit 9c6c6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trustgraph-flow/trustgraph/storage/triples/neo4j/write.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def handle(self, msg):

self.create_node(t.s.value)

if v.o.is_uri:
if t.o.is_uri:
self.create_node(t.o.value)
self.relate_node(t.s.value, t.p.value, t.o.value)
else:
Expand Down

0 comments on commit 9c6c6c9

Please sign in to comment.