"""The Path reader produces a file path. """ # 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 ##