mirror of
https://github.com/saymrwulf/QuantumLearning.git
synced 2026-05-14 20:58:00 +00:00
9 lines
201 B
Python
9 lines
201 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
SRC_PATH = Path(__file__).resolve().parents[1] / "src"
|
|
if str(SRC_PATH) not in sys.path:
|
|
sys.path.insert(0, str(SRC_PATH))
|
|
|