FANformer-1B / aliases.py
dongyh's picture
Upload 2 files
545d83f verified
raw
history blame contribute delete
109 Bytes
from os import PathLike
from typing import Union
__all__ = ["PathOrStr"]
PathOrStr = Union[str, PathLike]