Skip to content

Commit 874d070

Browse files
committed
Unset the returnFormat for SPARQLStore
1 parent e6454e2 commit 874d070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdflib/plugins/stores/sparqlstore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def __init__(
162162
sparql11: bool = True,
163163
context_aware: bool = True,
164164
node_to_sparql: _NodeToSparql = _node_to_sparql,
165-
returnFormat: SUPPORTED_FORMATS = "xml", # noqa: N803
165+
returnFormat: SUPPORTED_FORMATS | None = None, # noqa: N803
166166
method: SUPPORTED_METHODS = "GET",
167167
auth: tuple[str, str] | None = None,
168168
**sparqlconnector_kwargs,

0 commit comments

Comments
 (0)