Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into qhdwight/2024
Browse files Browse the repository at this point in the history
  • Loading branch information
qhdwight committed Sep 21, 2023
2 parents ab3b5e9 + 60d7a91 commit cad0d9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
runs-on: ubuntu-latest
container:
image: umrover1/ros:latest
# GitHub is silly and requires us to be running as root for their checkout action
# Our docker container exports the user mrover, so we have to specific this explicitly
options: --user root
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion src/navigation/navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import rospy
import smach
import smach_ros
from navigation.state import DoneState, DoneStateTransitions, OffState, OffStateTransitions
from smach.log import loginfo
from smach.log import set_loggers
from std_msgs.msg import String
Expand All @@ -19,6 +18,7 @@
from post_backup import PostBackupState, PostBackupTransitions
from recovery import RecoveryState, RecoveryStateTransitions
from search import SearchState, SearchStateTransitions
from state import DoneState, DoneStateTransitions, OffState, OffStateTransitions
from waypoint import WaypointState, WaypointStateTransitions


Expand Down

0 comments on commit cad0d9f

Please sign in to comment.