test_omni0 / aliases.py
zehui127's picture
Upload folder using huggingface_hub
ded00f6 verified
raw
history blame contribute delete
109 Bytes
from os import PathLike
from typing import Union
__all__ = ["PathOrStr"]
PathOrStr = Union[str, PathLike]