5 lines
No EOL
141 B
Python
5 lines
No EOL
141 B
Python
import os, sys
|
|
|
|
currentDir = os.path.dirname(__file__)
|
|
parentDir = os.path.join(currentDir, '..')
|
|
sys.path.append(os.path.abspath(parentDir)) |