Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

World modeling robot localization launch file #163

Draft
wants to merge 14 commits into
base: main
Choose a base branch
from

Merge branch 'world-modeling-robot-localization' of https://github.co…

bcc0410
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

World modeling robot localization launch file #163

Merge branch 'world-modeling-robot-localization' of https://github.co…
bcc0410
Select commit
Loading
Failed to load commit list.
GitHub Actions / Autopep8 failed Nov 22, 2024 in 0s

2 errors

Autopep8 found 2 errors

Annotations

Check failure on line 29 in src/world_modeling/localization/launch/localization.launch.py

See this annotation in the file changed.

@github-actions github-actions / Autopep8

src/world_modeling/localization/launch/localization.launch.py#L15-L29

         'config.yaml'
     )
 
-
     return LaunchDescription([
         # Declare the launch argument
         DeclareLaunchArgument(
             'config',
-            default_value = config_file_path,
+            default_value=config_file_path,
         ),
-        
+
         Node(
             package='robot_localization',
             executable='ekf_node',

Check failure on line 50 in src/world_modeling/localization/launch/localization.launch.py

See this annotation in the file changed.

@github-actions github-actions / Autopep8

src/world_modeling/localization/launch/localization.launch.py#L46-L50

             ],
         )
     ])
-