7 lines
98 B
Python
7 lines
98 B
Python
|
import os
|
||
|
|
||
|
|
||
|
def getDataPath():
|
||
|
resdir = os.path.join(os.path.dirname(__file__))
|
||
|
return resdir
|