Spaces:
Sleeping
Sleeping
File size: 247 Bytes
d02cfdb | 1 2 3 4 5 6 7 8 9 10 11 12 | import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
PACKAGE_ROOT = ROOT / "calender_en"
for path in (ROOT, PACKAGE_ROOT):
path_str = str(path)
if path_str not in sys.path:
sys.path.insert(0, path_str)
|