Spaces:
Runtime error
Runtime error
File size: 223 Bytes
128e4f0 |
1 2 3 4 5 6 7 8 9 10 |
import sys
import os
current_dir = os.path.dirname(os.path.realpath(__file__))
pardir = os.path.dirname(current_dir)
for d in [pardir, current_dir]:
if d not in sys.path:
sys.path.append(d)
import project_path |