From 52e8cf490182a522125e4a37687ddf42efb73883 Mon Sep 17 00:00:00 2001 From: Edmond Date: Tue, 26 Jul 2022 13:53:11 +0000 Subject: [PATCH] Remove pyoxigraph Store docstring types --- python/pyoxigraph/store.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/pyoxigraph/store.py b/python/pyoxigraph/store.py index e930a511..e63e831e 100644 --- a/python/pyoxigraph/store.py +++ b/python/pyoxigraph/store.py @@ -44,7 +44,6 @@ class Store(PyStore): """Adds a quad to the store. :param quad: the quad to add. - :type quad: Quad :raises IOError: if an I/O error happens during the quad insertion. >>> store = Store() @@ -283,7 +282,6 @@ class Store(PyStore): :param object: the quad object or :py:const:`None` to match everything. :param graph: the quad graph name. To match only the default graph, use :py:class:`DefaultGraph`. To match everything use :py:const:`None`. :return: an iterator of the quads matching the pattern. - :rtype: iter(Quad) :raises IOError: if an I/O error happens during the quads lookup. >>> store = Store()