Skip to content

Radar driver

Radar driver #306

GitHub Actions / Autopep8 failed Jul 18, 2024 in 0s

5 errors

Autopep8 found 5 errors

Annotations

Check failure on line 21 in src/interfacing/sensor_interfacing/radar_conti_ars408/launch/radar_driver.launch.py

See this annotation in the file changed.

@github-actions github-actions / Autopep8

src/interfacing/sensor_interfacing/radar_conti_ars408/launch/radar_driver.launch.py#L15-L21

 
 from pathlib import Path
 import os
+
 
 def generate_launch_description():
     config = os.path.join(

Check failure on line 55 in src/interfacing/sensor_interfacing/radar_conti_ars408/launch/radar_driver.launch.py

See this annotation in the file changed.

@github-actions github-actions / Autopep8

src/interfacing/sensor_interfacing/radar_conti_ars408/launch/radar_driver.launch.py#L48-L55

     filters_arg = DeclareLaunchArgument('filters', default_value='0:0')
     auto_configure_arg = DeclareLaunchArgument('auto_configure', default_value='true')
     auto_activate_arg = DeclareLaunchArgument('auto_activate', default_value='true')
-    from_can_bus_topic_arg = DeclareLaunchArgument('from_can_bus_topic', default_value='from_can_bus')
+    from_can_bus_topic_arg = DeclareLaunchArgument(
+        'from_can_bus_topic', default_value='from_can_bus')
     to_can_bus_topic_msg = DeclareLaunchArgument('to_can_bus_topic', default_value='to_can_bus')
 
     # can sender

Check failure on line 162 in src/interfacing/sensor_interfacing/radar_conti_ars408/launch/radar_driver.launch.py

See this annotation in the file changed.

@github-actions github-actions / Autopep8

src/interfacing/sensor_interfacing/radar_conti_ars408/launch/radar_driver.launch.py#L155-L162

         name='radar_node',
         output='screen',
         parameters=[LaunchConfiguration('params_file')])
-    
 
     ld = LaunchDescription([
         interface_arg,

Check failure on line 180 in src/interfacing/sensor_interfacing/radar_conti_ars408/launch/radar_driver.launch.py

See this annotation in the file changed.

@github-actions github-actions / Autopep8

src/interfacing/sensor_interfacing/radar_conti_ars408/launch/radar_driver.launch.py#L171-L180

         autostart_arg,
         use_sim_time_arg,
         timeout_sec_msg,
-        
+
         radar_node,
-        
+
         socket_can_receiver_node,
         socket_can_receiver_configure_event_handler,
         socket_can_receiver_activate_event_handler,

Check failure on line 21 in src/samples/python/aggregator/setup.py

See this annotation in the file changed.

@github-actions github-actions / Autopep8

src/samples/python/aggregator/setup.py#L14-L21

         # Include our package.xml file
         (os.path.join('share', package_name), ['package.xml']),
         # Include all launch files.
-        (os.path.join('share', package_name, 'launch'), \
+        (os.path.join('share', package_name, 'launch'),
          glob(os.path.join('launch', '*.launch.py'))),
     ],
     install_requires=['setuptools'],