7 lines
109 B
Python
7 lines
109 B
Python
|
import os
|
||
|
|
||
|
def get_root_path():
|
||
|
return os.path.abspath(
|
||
|
os.path.join(__file__, "../../..")
|
||
|
)
|