6 lines
167 B
Python
6 lines
167 B
Python
import sys
|
|
sys_path = sys.path[0].replace("\\", "/")
|
|
sys_path_linux = sys_path + "/../.."
|
|
if sys_path_linux not in sys.path :
|
|
sys.path.append(sys_path_linux)
|