Add return checker, needed 4 fixes
This commit is contained in:
parent
3f0564f253
commit
2050c2dc7c
5 changed files with 14 additions and 23 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue