Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
meshvaD committed Jul 18, 2024
1 parent 372855b commit f5c683d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from pathlib import Path
import os


def generate_launch_description():
config = os.path.join(
get_package_share_directory('radar_conti_ars408'),
Expand Down Expand Up @@ -48,7 +49,8 @@ def generate_launch_description():
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
Expand Down Expand Up @@ -156,7 +158,6 @@ def generate_launch_description():
output='screen',
parameters=[LaunchConfiguration('params_file')])


ld = LaunchDescription([
interface_arg,
enable_can_fd_arg,
Expand All @@ -171,9 +172,7 @@ def generate_launch_description():
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,
Expand Down
2 changes: 1 addition & 1 deletion src/samples/python/aggregator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# 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'],
Expand Down

0 comments on commit f5c683d

Please sign in to comment.