Skip to content

Commit

Permalink
Fixed Lint for green CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JatinPatil2003 committed Oct 12, 2024
1 parent 9c77d6d commit cd9b276
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions autonav_bringup/launch/autonav_control.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@
from launch import LaunchDescription
from launch.actions import (
DeclareLaunchArgument,
IncludeLaunchDescription,
RegisterEventHandler,
TimerAction,
)
from launch.conditions import IfCondition
from launch.event_handlers import OnProcessStart
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch.substitutions import (
Command,
FindExecutable,
Expand Down
4 changes: 2 additions & 2 deletions autonav_navigation/launch/navigation.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def generate_launch_description():
[FindPackageShare('autonav_navigation'), 'rviz', 'navigation.rviz']
)

MAP_NAME = LaunchConfiguration("map_name")
MAP_NAME = LaunchConfiguration('map_name')

default_map_path = PathJoinSubstitution(
[TextSubstitution(text=os.getcwd()), 'maps', MAP_NAME]
Expand Down Expand Up @@ -50,7 +50,7 @@ def generate_launch_description():
),

DeclareLaunchArgument(
name='map_name',
name='map_name',
default_value='map',
description='Navigation map name'
),
Expand Down

0 comments on commit cd9b276

Please sign in to comment.