naveensp's picture
Upload folder using huggingface_hub
886ea5f verified
raw
history blame
No virus
109 Bytes
from os import PathLike
from typing import Union
__all__ = ["PathOrStr"]
PathOrStr = Union[str, PathLike]