File size: 210 Bytes
230c9a6
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import os
import sys

current_dir = os.path.dirname(os.path.abspath(__file__))

root_dir = os.path.abspath(os.path.join(current_dir, '..'))

if root_dir not in sys.path:
    sys.path.insert(0, root_dir)