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