diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-12-18 13:53:34 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-12-18 13:53:34 +0100 |
commit | ebc3ccb5fdce950649bfcbf18f88ecb4a9dbcad0 (patch) | |
tree | 1815e3b4c10b6ffdd012650b0e768e4659b996e6 /bsfs/graph/__init__.py | |
parent | 1b570e45a4e99a4e7f9ad9d01b4fa93e38fbff38 (diff) | |
download | bsfs-ebc3ccb5fdce950649bfcbf18f88ecb4a9dbcad0.tar.gz bsfs-ebc3ccb5fdce950649bfcbf18f88ecb4a9dbcad0.tar.bz2 bsfs-ebc3ccb5fdce950649bfcbf18f88ecb4a9dbcad0.zip |
import fixes
Diffstat (limited to 'bsfs/graph/__init__.py')
-rw-r--r-- | bsfs/graph/__init__.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bsfs/graph/__init__.py b/bsfs/graph/__init__.py index 3a131e9..82d2235 100644 --- a/bsfs/graph/__init__.py +++ b/bsfs/graph/__init__.py @@ -8,8 +8,11 @@ Author: Matthias Baumgartner, 2022 import typing # inner-module imports +from .graph import Graph # exports -__all__: typing.Sequence[str] = [] +__all__: typing.Sequence[str] = ( + 'Graph', + ) ## EOF ## |