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