summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rdflib/plugins/stores/sparqlstore.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdflib/plugins/stores/sparqlstore.py b/rdflib/plugins/stores/sparqlstore.py
index c7d5b6b8..ba092c50 100644
--- a/rdflib/plugins/stores/sparqlstore.py
+++ b/rdflib/plugins/stores/sparqlstore.py
@@ -25,7 +25,7 @@ ORDERBY = "ORDER BY"
BNODE_IDENT_PATTERN = re.compile(r"(?P<label>_\:[^\s]+)")
-NoteToSparql = Callable[..., str]
+NodeToSparql = Callable[..., str]
def _node_to_sparql(node) -> str:
@@ -99,7 +99,7 @@ class SPARQLStore(SPARQLConnector, Store): # type: ignore[misc]
query_endpoint: str = None,
sparql11: bool = True,
context_aware: bool = True,
- node_to_sparql: NoteToSparql = _node_to_sparql,
+ node_to_sparql: NodeToSparql = _node_to_sparql,
returnFormat: str = "xml",
auth: Optional[Tuple[str, str]] = None,
**sparqlconnector_kwargs