aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/reader/path.py
blob: 1ca05a0e471a599c52937d9f1aae496f79499d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""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
"""
# standard imports
import typing

# inner-module imports
from . import base

# exports
__all__: typing.Sequence[str] = (
    'Path',
    )


## code ##

class Path(base.Reader):
    """Return the path."""

    def __call__(self, path: str) -> str:
        return path


## EOF ##