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