From 86dce3d7c3e436f1e05c72a15f50459edd812675 Mon Sep 17 00:00:00 2001 From: Tpt Date: Mon, 12 Jun 2023 16:45:28 +0200 Subject: [PATCH] Python: fixes Store.contains_named_graph return type --- python/src/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/store.rs b/python/src/store.rs index 9410aeed..5e3c1df9 100644 --- a/python/src/store.rs +++ b/python/src/store.rs @@ -597,7 +597,7 @@ impl PyStore { /// /// :param graph_name: the name of the named graph. /// :type graph_name: NamedNode or BlankNode or DefaultGraph - /// :rtype: None + /// :rtype: bool /// :raises IOError: if an I/O error happens during the named graph lookup. /// /// >>> store = Store()