6 lines
131 B
Python
6 lines
131 B
Python
|
|
from os.path import abspath, dirname, join
|
||
|
|
import sys
|
||
|
|
sys.path.insert(0, abspath(join(dirname(__file__), '..')))
|
||
|
|
|
||
|
|
import pointsbot
|