diff options
Diffstat (limited to 'bsie/reader/path.py')
-rw-r--r-- | bsie/reader/path.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/bsie/reader/path.py b/bsie/reader/path.py index d60f187..45eb127 100644 --- a/bsie/reader/path.py +++ b/bsie/reader/path.py @@ -1,14 +1,10 @@ """The Path reader produces a file path. - -Part of the bsie module. -A copy of the license is provided with the project. -Author: Matthias Baumgartner, 2022 """ -# imports +# standard imports import typing -# bsie imports -from bsie.base import reader +# inner-module imports +from . import base # exports __all__: typing.Sequence[str] = ( @@ -18,7 +14,7 @@ __all__: typing.Sequence[str] = ( ## code ## -class Path(reader.Reader): +class Path(base.Reader): """Return the path.""" def __call__(self, path: str) -> str: |