9 lines
152 B
Python
9 lines
152 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import os
|
|
|
|
module_path = os.path.abspath(os.pardir)
|
|
if module_path not in sys.path:
|
|
sys.path.append(module_path)
|