English
naveensp commited on
Commit
7ba9065
·
verified ·
1 Parent(s): 2e5456c

Upload aliases.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. 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]