diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-03-04 15:24:18 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-03-04 15:24:18 +0100 |
commit | b5746fd9d49ade49ea77f10010bbabe8da8656d0 (patch) | |
tree | d147d66df5fef18b96d6ea99bfa77a5da19b4997 | |
parent | 02002942a3ea0172538ce3e9a636ea4a089ba870 (diff) | |
download | tagit-b5746fd9d49ade49ea77f10010bbabe8da8656d0.tar.gz tagit-b5746fd9d49ade49ea77f10010bbabe8da8656d0.tar.bz2 tagit-b5746fd9d49ade49ea77f10010bbabe8da8656d0.zip |
minor fixes
-rw-r--r-- | tagit/apps/__init__.py | 1 | ||||
-rw-r--r-- | tagit/utils/namespaces.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tagit/apps/__init__.py b/tagit/apps/__init__.py index 6b4986c..84d0bf1 100644 --- a/tagit/apps/__init__.py +++ b/tagit/apps/__init__.py @@ -18,6 +18,7 @@ from .desktop import main as desktop # exports __all__: typing.Sequence[str] = ( 'desktop', + 'main', ) # config diff --git a/tagit/utils/namespaces.py b/tagit/utils/namespaces.py index 3fb889c..a17a927 100644 --- a/tagit/utils/namespaces.py +++ b/tagit/utils/namespaces.py @@ -18,10 +18,10 @@ bsfs = _bsfs.Namespace('https://schema.bsfs.io/core') bsie = _bsfs.Namespace('https://schema.bsfs.io/ie') # auxiliary bsfs namespaces +bsn = bsie.Node bse = bsn.Entity() bsg = bsn.Group() bsl = bsfs.Literal -bsn = bsie.Node bsp = bsn.Preview() bst = bsn.Tag() |