From 60bacf4be74aae9d32b2debcc23c6fcb933b738c Mon Sep 17 00:00:00 2001 From: Sarath Menon Date: Tue, 9 Apr 2024 08:15:27 +0200 Subject: [PATCH] add missing store creation statement --- pyscal_rdf/graph.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyscal_rdf/graph.py b/pyscal_rdf/graph.py index 5ffd75b..bf0cbcb 100644 --- a/pyscal_rdf/graph.py +++ b/pyscal_rdf/graph.py @@ -107,6 +107,7 @@ def __init__(self, graph_file=None, if store_file is None: raise ValueError("store file is needed if store is not memory") + self.graph = Graph(store="SQLAlchemy", identifier=identifier) uri = Literal(f"sqlite:///{store_file}") self.graph.open(uri, create=True) else: