6 lines
123 B
Python
6 lines
123 B
Python
|
import os
|
||
|
|
||
|
|
||
|
def get_root_folder():
|
||
|
return os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|