Skip to content

Commit

Permalink
isort.
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoltin committed Jan 24, 2024
1 parent c67b7c3 commit 3fc574f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
# License for the specific language governing permissions and limitations
# under the License.

from survey_planner import command_astrobee
import sys

from survey_planner import command_astrobee

if __name__ == "__main__":
sys.exit(command_astrobee.main())
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
# License for the specific language governing permissions and limitations
# under the License.

from survey_planner import monitor_astrobee
import sys

from survey_planner import monitor_astrobee

if __name__ == "__main__":
sys.exit(monitor_astrobee.main())
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
# License for the specific language governing permissions and limitations
# under the License.

from survey_planner import plan_interpreter
import sys

from survey_planner import plan_interpreter

if __name__ == "__main__":
sys.exit(plan_interpreter.main())
3 changes: 2 additions & 1 deletion astrobee/survey_manager/survey_planner/tools/plan_survey
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
# License for the specific language governing permissions and limitations
# under the License.

from survey_planner import survey_planner
import sys

from survey_planner import survey_planner

if __name__ == "__main__":
sys.exit(survey_planner.main())
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
# License for the specific language governing permissions and limitations
# under the License.

from survey_planner import problem_generator
import sys

from survey_planner import problem_generator

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

0 comments on commit 3fc574f

Please sign in to comment.