From a0cc75b7cc943a06149a844f99264188e82f15e3 Mon Sep 17 00:00:00 2001 From: Tpt Date: Sat, 9 Mar 2024 18:33:48 +0100 Subject: [PATCH] Python: bulk_loader: fixes type annotations --- 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 cbb4f975..a810559f 100644 --- a/python/src/store.rs +++ b/python/src/store.rs @@ -452,7 +452,7 @@ impl PyStore { /// :param input: The :py:class:`str`, :py:class:`bytes` or I/O object to read from. For example, it could be the file content as a string or a file reader opened in binary mode with ``open('my_file.ttl', 'rb')``. /// :type input: bytes or str or typing.IO[bytes] or typing.IO[str] or None, optional /// :param format: the format of the RDF serialization. If :py:const:`None`, the format is guessed from the file name extension. - /// :type format: str or None, optional + /// :type format: RdfFormat or None, optional /// :param path: The file path to read from. Replaces the ``input`` parameter. /// :type path: str or os.PathLike[str] or None, optional /// :param base_iri: the base IRI used to resolve the relative IRIs in the file or :py:const:`None` if relative IRI resolution should not be done.