Skip to content

Commit

Permalink
Fix planner script.
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoltin committed Jan 24, 2024
1 parent 3fc574f commit 93eed3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions astrobee/survey_manager/survey_planner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ catkin_install_python(PROGRAMS
tools/command_astrobee
tools/monitor_astrobee
tools/plan_interpreter
tools/plan_survey
tools/problem_generator
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

import pyparsing as pp
import yaml
from problem_generator import PDDL_DIR
from survey_planner.problem_generator import PDDL_DIR

LocationName = str # Names PDDL object of type location
LocationIndex = int # Index of location in CONFIG.locations
Expand Down
4 changes: 2 additions & 2 deletions astrobee/survey_manager/survey_planner/tools/plan_survey
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import sys

from survey_planner import survey_planner
from survey_planner import plan_survey

if __name__ == "__main__":
sys.exit(survey_planner.main())
sys.exit(plan_survey.main())

0 comments on commit 93eed3c

Please sign in to comment.