Upload aliases.py with huggingface_hub
Browse files- aliases.py +7 -0
aliases.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from os import PathLike
|
2 |
+
from typing import Union
|
3 |
+
|
4 |
+
__all__ = ["PathOrStr"]
|
5 |
+
|
6 |
+
|
7 |
+
PathOrStr = Union[str, PathLike]
|