Skip to content
Snippets Groups Projects
Unverified Commit f8ed1f4a authored by Ugo Okoroafor's avatar Ugo Okoroafor Committed by GitHub
Browse files

Fix the TypeError in the upsert_triplet method of the NeptuneBaseGrap… (#18051)

parent 9911228a
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,7 @@ class NeptuneBaseGraphStore(GraphStore):
"""
prepared_statement = query % (
self.node_label.replace("`", ""),
self.node_label.replace("`", ""),
rel.replace(" ", "_").replace("`", "").upper(),
)
......
......@@ -30,7 +30,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-graph-stores-neptune"
readme = "README.md"
version = "0.3.1"
version = "0.3.2"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment