Add root directory to system path for lattice planner (#1221)

This commit is contained in:
Yutharsan
2025-05-25 10:27:02 +05:30
committed by GitHub
parent c9051758e7
commit 453c25e461

View File

@@ -22,7 +22,9 @@ from matplotlib import pyplot as plt
import numpy as np
import math
import pathlib
sys.path.append(str(pathlib.Path(__file__).parent.parent))
sys.path.append(str(pathlib.Path(__file__).parent.parent.parent))
import ModelPredictiveTrajectoryGenerator.trajectory_generator as planner
import ModelPredictiveTrajectoryGenerator.motion_model as motion_model