diff options
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 ## |