There is `os.PathLike` (https://docs.python.org/3/library/os.html#os.PathLike). Can we use this for type information instead of defining our own `_Pathlike = Union[str, pathlib.Path]`?
There is
os.PathLike(https://docs.python.org/3/library/os.html#os.PathLike). Can we use this for type information instead of defining our own_Pathlike = Union[str, pathlib.Path]?