Skip to content

Commit

Permalink
CI対応の微修正
Browse files Browse the repository at this point in the history
  • Loading branch information
mizonon committed Nov 12, 2024
1 parent 1f59bd9 commit 78dbc3c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@

import math

from crane_plus_examples_py.utils import plan_and_execute

# moveit python library
from moveit.core.robot_state import RobotState
from moveit.planning import (
MoveItPy,
PlanRequestParameters,
)

from crane_plus_examples_py.utils import plan_and_execute

from rclpy.logging import get_logger
import rclpy
from rclpy.logging import get_logger


def main(args=None):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
from rclpy.logging import get_logger



def main(args=None):
# ros2の初期化
rclpy.init(args=args)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
import datetime
import math

from crane_plus_examples_py.utils import euler_to_quaternion, plan_and_execute

from geometry_msgs.msg import PoseStamped

# moveit python library
Expand All @@ -27,8 +29,6 @@

import numpy as np

from crane_plus_examples_py.utils import euler_to_quaternion, plan_and_execute

import rclpy
from rclpy.logging import get_logger
from rclpy.node import Node
Expand Down
6 changes: 4 additions & 2 deletions crane_plus_examples_py/launch/example.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ def generate_launch_description():
# "loaded_description',
# default_value='',
# description='Set robot_description text. \
# It is recommended to use RobotDescriptionLoader() in crane_plus_description.',
# It is recommended to use RobotDescriptionLoader() in \
# crane_plus_description.',
# )
ld = LaunchDescription()
description_loader = RobotDescriptionLoader()
Expand Down Expand Up @@ -113,7 +114,8 @@ def generate_launch_description():
parameters=[moveit_config.to_dict()],
)

# ld = LaunchDescription([SetParameter(name='use_sim_time', value=LaunchConfiguration('use_sim_time'))])
# ld = LaunchDescription([SetParameter(
# name='use_sim_time', value=LaunchConfiguration('use_sim_time'))])
# ld.add_action(declare_use_sim_time)
# ld.add_action(use_sim_time_name)
# ld.add_action(declare_loaded_description)
Expand Down

0 comments on commit 78dbc3c

Please sign in to comment.