Skip to content

Commit

Permalink
fix bulk test
Browse files Browse the repository at this point in the history
  • Loading branch information
ajuvercr committed May 14, 2024
1 parent 2aa53f0 commit 21e312f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/CBDShapeExtractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ export class CBDShapeExtractor {

graphs.pop();

out.push({ subject: id, quads });
const entity = { subject: id, quads };
out.push(entity);
if (itemExtracted) itemExtracted(entity);
}

return out;
Expand Down

0 comments on commit 21e312f

Please sign in to comment.