mirror of
https://github.com/codl/forget
synced 2024-12-27 07:32:34 +01:00
9 lines
158 B
Python
9 lines
158 B
Python
import sys
|
|
from pathlib import Path
|
|
|
|
PROJDIR = str(Path(__file__).parent.parent)
|
|
if PROJDIR not in sys.path:
|
|
print(PROJDIR)
|
|
sys.path.append(PROJDIR)
|
|
|