ZhengyangZhang's picture
Add files using upload-large-folder tool
a102c6e verified
Raw
History Blame Contribute Delete
205 Bytes
import os
from typing import TypeVar, Union
T = TypeVar("T")
ListLike = Union[list[T], tuple[T, ...]]
NestedDataStructureLike = Union[T, list[T], dict[str, T]]
PathLike = Union[str, bytes, os.PathLike]