Skip to content

Commit

Permalink
flake8通るように修正
Browse files Browse the repository at this point in the history
  • Loading branch information
chama1176 committed Dec 23, 2024
1 parent b16cede commit 96f2f82
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sciurus17_examples_py/launch/example.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@
from launch.actions import DeclareLaunchArgument
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import Node
from launch_ros.actions import SetParameter
from moveit_configs_utils import MoveItConfigsBuilder
from sciurus17_description.robot_description_loader import RobotDescriptionLoader
from launch.conditions import IfCondition


def generate_launch_description():
Expand Down Expand Up @@ -60,7 +58,7 @@ def generate_launch_description():
# 下記Issue対応のためここでパラメータを設定する
# https://github.com/moveit/moveit2/issues/2940#issuecomment-2401302214
config_dict = moveit_config.to_dict()
config_dict.update({'use_sim_time':LaunchConfiguration('use_sim_time')})
config_dict.update({'use_sim_time': LaunchConfiguration('use_sim_time')})

example_node = Node(
name=[LaunchConfiguration('example'), '_node'],
Expand Down

0 comments on commit 96f2f82

Please sign in to comment.