This commit is contained in:
2026-08-16 21:42:14 -04:00
parent 72a39e5baa
commit 025392b129
4 changed files with 37 additions and 4 deletions
+1 -2
View File
@@ -155,8 +155,7 @@ fn main() -> color_eyre::Result<()> {
.map(Triple::from)
.collect::<Graph>();
let documents = indexer.graph(&graph_with_inferences)?;
for document in documents {
for document in indexer.graph(&graph_with_inferences)? {
writer.add_document(document)?;
}