10 lines
211 B
Python
10 lines
211 B
Python
"""
|
|
Import project src folder
|
|
"""
|
|
# Note that this depends on the `src` folder being a sibling directory to the
|
|
# current directory.
|
|
import sys, pathlib
|
|
|
|
|
|
sys.path.append(str(pathlib.Path.cwd().parent / 'src'))
|