File size: 109 Bytes
2010c83 |
1 2 3 4 5 6 7 8 |
from os import PathLike
from typing import Union
__all__ = ["PathOrStr"]
PathOrStr = Union[str, PathLike]
|
2010c83 |
1 2 3 4 5 6 7 8 |
from os import PathLike
from typing import Union
__all__ = ["PathOrStr"]
PathOrStr = Union[str, PathLike]
|