File size: 151 Bytes
ae7097b
63501c1
ae7097b
63501c1
ae7097b
 
 
1
2
3
4
5
6
7
8
import pathlib
from typing import List

def make_dirs(dirs: List[str]):
    for p in dirs:
        pathlib.Path(p).mkdir(parents=True, exist_ok=True)