7 lines
125 B
Python
7 lines
125 B
Python
import os
|
|
from typing import List
|
|
|
|
|
|
def path_join(*pat_list: List[str]):
|
|
return os.path.join(*pat_list).replace('\\', '/')
|