summaryrefslogtreecommitdiff
path: root/rdflib/__init__.py
diff options
context:
space:
mode:
authorIwan Aucamp <aucampia@gmail.com>2023-04-10 12:06:21 +0200
committerGitHub <noreply@github.com>2023-04-10 12:06:21 +0200
commitb2f3987240ebb9edf03fea9bd94f8760ef99f419 (patch)
tree80ec3f783e335ef2517d0de65dfe9493f96c3e52 /rdflib/__init__.py
parent6e544f5afc365b8e0fc8ad7f98c4c27b9daa755d (diff)
downloadrdflib-b2f3987240ebb9edf03fea9bd94f8760ef99f419.tar.gz
refactor: eliminate unused imports (#2337)
`XMLNS` was seen as unused in `rdflib/__init__.py` but this change adds it to `__all__` in that module so that it is not unused. This change also removes actual unused imports in `rdflib/namespace/__init__.py`.
Diffstat (limited to 'rdflib/__init__.py')
-rw-r--r--rdflib/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/rdflib/__init__.py b/rdflib/__init__.py
index 0a7610f3..dc32be8e 100644
--- a/rdflib/__init__.py
+++ b/rdflib/__init__.py
@@ -92,6 +92,7 @@ __all__ = [
"TIME",
"VANN",
"VOID",
+ "XMLNS",
"XSD",
"util",
"plugin",