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