Add return checker, needed 4 fixes

This commit is contained in:
Julian Stirling 2025-06-10 14:00:56 +01:00
parent 3f0564f253
commit 2050c2dc7c
5 changed files with 14 additions and 23 deletions

View file

@ -189,8 +189,7 @@ def get_expected_result_for_example_smart_spiral(
"""
pkl_fname = os.path.join(THIS_DIR, f"example_smart_spiral_{sample_name}.pkl")
with open(pkl_fname, "rb") as pkl_file_obj:
planner = pickle.load(pkl_file_obj)
return planner
return pickle.load(pkl_file_obj)
def load_sample_points(sample_name: str):