Spaces:
Runtime error
Runtime error
File size: 182 Bytes
2de1f98 |
1 2 3 4 5 6 7 8 9 10 11 |
import os
import sys
def make_folder(folder_name):
os.makedirs(folder_name, exist_ok=True)
def add_pypath(path):
if path not in sys.path:
sys.path.insert(0, path)
|