Skip to content

Commit

Permalink
Fix unrecognized Python executables
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcalderon03 committed Jul 24, 2024
1 parent 8f08ee2 commit 7a919f0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions urc_bringup/launch/bringup_simulation.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ def generate_launch_description():
arguments=["-p", controller_config_file_dir, "rover_drivetrain_controller"],
)

# teleop_launch = IncludeLaunchDescription(
# PythonLaunchDescriptionSource(
# [FindPackageShare("urc_bringup"), "/launch/teleop.launch.py"]
# )
# )
teleop_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
[FindPackageShare("urc_bringup"), "/launch/teleop.launch.py"]
)
)

# ekf_launch = IncludeLaunchDescription(
# PythonLaunchDescriptionSource(
Expand All @@ -124,11 +124,11 @@ def generate_launch_description():
# )
# )

# bt_launch = IncludeLaunchDescription(
# PythonLaunchDescriptionSource(
# os.path.join(pkg_urc_bringup, "launch", "bt.launch.py")
# )
# )
bt_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(pkg_urc_bringup, "launch", "bt.launch.py")
)
)

path_planning_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
Expand Down

0 comments on commit 7a919f0

Please sign in to comment.