Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
shihanwan committed Oct 14, 2024
1 parent 1be2c87 commit 2ccba23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memonto/core/recall.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def _hydrate_triples(
triple_store: VectorStoreModel,
id: str = None,
) -> Graph:
triple_ids = " ".join(f"(\"{triple_id}\")" for triple_id in triples)
triple_ids = " ".join(f'("{triple_id}")' for triple_id in triples)

graph_id = f"data-{id}" if id else "data"

Expand Down

0 comments on commit 2ccba23

Please sign in to comment.