aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/lib/__init__.py
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2022-12-15 16:50:53 +0100
committerMatthias Baumgartner <dev@igsor.net>2022-12-15 16:50:53 +0100
commit49cf03fc212c813862453de5352436dc90d1e458 (patch)
tree7670841f081a9ad04386c6cc3e046d75941e8b00 /bsie/lib/__init__.py
parent3dc3e9a9b0fc8c9727f91359814866d3deae6e79 (diff)
downloadbsie-49cf03fc212c813862453de5352436dc90d1e458.tar.gz
bsie-49cf03fc212c813862453de5352436dc90d1e458.tar.bz2
bsie-49cf03fc212c813862453de5352436dc90d1e458.zip
imports and init files
Diffstat (limited to 'bsie/lib/__init__.py')
-rw-r--r--bsie/lib/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/bsie/lib/__init__.py b/bsie/lib/__init__.py
index f6c9018..578c2c4 100644
--- a/bsie/lib/__init__.py
+++ b/bsie/lib/__init__.py
@@ -7,7 +7,12 @@ Author: Matthias Baumgartner, 2022
# imports
import typing
+# inner-module imports
+from .bsie import BSIE
+
# exports
-__all__: typing.Sequence[str] = []
+__all__: typing.Sequence[str] = (
+ 'BSIE',
+ )
## EOF ##