summaryrefslogtreecommitdiff
path: root/docs/rdf_terms.rst
diff options
context:
space:
mode:
authorIwan Aucamp <aucampia@gmail.com>2023-04-12 22:10:43 +0200
committerGitHub <noreply@github.com>2023-04-12 22:10:43 +0200
commit7df77cd3fa0381ae2b309981230eaa0d42e90b79 (patch)
tree0d02cc4f882e68ae7b3341b805c2338691a6853e /docs/rdf_terms.rst
parent81d13d432b7e49b557b5de11691bdeaed31a9b06 (diff)
downloadrdflib-7df77cd3fa0381ae2b309981230eaa0d42e90b79.tar.gz
fix: correct imports and `__all__` (#2340)
Disable [`implicit_reexport`](https://mypy.readthedocs.io/en/stable/config_file.html#confval-implicit_reexport) and eliminate all errors reported by mypy after this. This helps ensure that import statements import from the right module and that the `__all__` variable is correct.
Diffstat (limited to 'docs/rdf_terms.rst')
-rw-r--r--docs/rdf_terms.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/rdf_terms.rst b/docs/rdf_terms.rst
index 66abd183..b44b0a58 100644
--- a/docs/rdf_terms.rst
+++ b/docs/rdf_terms.rst
@@ -150,7 +150,7 @@ Common XSD datatypes
^^^^^^^^^^^^^^^^^^^^
Most simple literals such as *string* or *integer* have XML Schema (XSD) datatypes defined for them, see the figure
-below. Additionally, these XSD datatypes are listed in the :class:`XSD Namespace class <rdflib.XSD>` that
+below. Additionally, these XSD datatypes are listed in the :class:`XSD Namespace class <rdflib.namespace.XSD>` that
ships with RDFLib, so many Python code editors will prompt you with autocomplete for them when using it.
Remember, you don't *have* to use XSD datatypes and can always make up your own, as GeoSPARQL does, as described above.