Skip to content

Commit 8ceece5

Browse files
committed
pre-commit fixes
1 parent 1364bc7 commit 8ceece5

9 files changed

Lines changed: 18 additions & 24 deletions

File tree

my_dual_robot_cell/my_dual_robot_cell_control/config/combined_controllers.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ controller_manager:
55

66
alice_io_and_status_controller:
77
type: ur_controllers/GPIOController
8-
8+
99
bob_io_and_status_controller:
1010
type: ur_controllers/GPIOController
1111

1212
alice_speed_scaling_state_broadcaster:
1313
type: ur_controllers/SpeedScalingStateBroadcaster
14-
14+
1515
bob_speed_scaling_state_broadcaster:
1616
type: ur_controllers/SpeedScalingStateBroadcaster
1717

@@ -23,7 +23,7 @@ controller_manager:
2323

2424
alice_joint_trajectory_controller:
2525
type: joint_trajectory_controller/JointTrajectoryController
26-
26+
2727
bob_trajectory_controller:
2828
type: joint_trajectory_controller/JointTrajectoryController
2929

@@ -38,7 +38,7 @@ controller_manager:
3838

3939
alice_forward_position_controller:
4040
type: position_controllers/JointGroupPositionController
41-
41+
4242
bob_forward_position_controller:
4343
type: position_controllers/JointGroupPositionController
4444

@@ -47,7 +47,7 @@ alice_speed_scaling_state_broadcaster:
4747
ros__parameters:
4848
state_publish_rate: 100.0
4949
tf_prefix: "alice_"
50-
50+
5151
bob_speed_scaling_state_broadcaster:
5252
ros__parameters:
5353
state_publish_rate: 100.0
@@ -114,7 +114,7 @@ alice_joint_trajectory_controller:
114114
alice_wrist_1_joint: { trajectory: 0.2, goal: 0.1 }
115115
alice_wrist_2_joint: { trajectory: 0.2, goal: 0.1 }
116116
alice_wrist_3_joint: { trajectory: 0.2, goal: 0.1 }
117-
117+
118118
bob_joint_trajectory_controller:
119119
ros__parameters:
120120
joints:
@@ -238,4 +238,4 @@ bob_forward_position_controller:
238238
- bob_elbow_joint
239239
- bob_wrist_1_joint
240240
- bob_wrist_2_joint
241-
- bob_wrist_3_joint
241+
- bob_wrist_3_joint

my_dual_robot_cell/my_dual_robot_cell_control/launch/rsp.launch.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from launch import LaunchDescription
22
from launch.actions import DeclareLaunchArgument
3-
from launch.substitutions import (Command, FindExecutable, LaunchConfiguration,
4-
PathJoinSubstitution)
3+
from launch.substitutions import Command, FindExecutable, LaunchConfiguration, PathJoinSubstitution
54
from launch_ros.actions import Node
65
from launch_ros.substitutions import FindPackageShare
76

@@ -20,12 +19,8 @@ def generate_launch_description():
2019

2120
headless_mode = LaunchConfiguration("headless_mode")
2221

23-
alice_kinematics_parameters_file = LaunchConfiguration(
24-
"alice_kinematics_parameters_file"
25-
)
26-
bob_kinematics_parameters_file = LaunchConfiguration(
27-
"bob_kinematics_parameters_file"
28-
)
22+
alice_kinematics_parameters_file = LaunchConfiguration("alice_kinematics_parameters_file")
23+
bob_kinematics_parameters_file = LaunchConfiguration("bob_kinematics_parameters_file")
2924

3025
robot_description_content = Command(
3126
[

my_dual_robot_cell/my_dual_robot_cell_description/urdf/my_dual_robot_cell_macro.xacro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<child link="alice_robot_mount"/>
8989
<origin xyz="0.5 0.3 0" rpy="0 0 ${pi}" />
9090
</joint>
91-
91+
9292
<link name="bob_robot_mount"/>
9393
<joint name="base_to_bob_robot_mount" type="fixed">
9494
<parent link="table"/>
@@ -108,7 +108,7 @@
108108
>
109109
<origin xyz="0 0 0" rpy="0 0 0" />
110110
</xacro:ur_robot>
111-
111+
112112
<!--Creates the 2nd Robot-->
113113
<xacro:ur_robot
114114
name="bob"

my_dual_robot_cell/my_dual_robot_cell_moveit_config/.setup_assistant

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ moveit_setup_assistant_config:
77
package_settings:
88
author_name: Vihaan Shah
99
author_email: vihaan.shah@uconn.edu
10-
generated_timestamp: 1719324402
10+
generated_timestamp: 1719324402

my_dual_robot_cell/my_dual_robot_cell_moveit_config/config/initial_positions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ initial_positions:
1212
bob_shoulder_pan_joint: 0
1313
bob_wrist_1_joint: 0
1414
bob_wrist_2_joint: 0
15-
bob_wrist_3_joint: 0
15+
bob_wrist_3_joint: 0

my_dual_robot_cell/my_dual_robot_cell_moveit_config/config/joint_limits.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ joint_limits:
6767
has_velocity_limits: true
6868
max_velocity: 6.2831853071795862
6969
has_acceleration_limits: true
70-
max_acceleration: 5.0
70+
max_acceleration: 5.0

my_dual_robot_cell/my_dual_robot_cell_moveit_config/config/kinematics.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ alice_manipulator:
55
bob_manipulator:
66
kinematics_solver: kdl_kinematics_plugin/KDLKinematicsPlugin
77
kinematics_solver_search_resolution: 0.0050000000000000001
8-
kinematics_solver_timeout: 0.0050000000000000001
8+
kinematics_solver_timeout: 0.0050000000000000001

my_dual_robot_cell/my_dual_robot_cell_moveit_config/config/moveit_controllers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ moveit_simple_controller_manager:
2929
- bob_elbow_joint
3030
- bob_wrist_1_joint
3131
- bob_wrist_2_joint
32-
- bob_wrist_3_joint
32+
- bob_wrist_3_joint

my_dual_robot_cell/my_dual_robot_cell_moveit_config/launch/dual_ur_moveit.launch.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
import yaml
55
from ament_index_python.packages import get_package_share_directory
66
from launch import LaunchDescription
7-
from launch.actions import (DeclareLaunchArgument, ExecuteProcess,
8-
RegisterEventHandler)
7+
from launch.actions import DeclareLaunchArgument, ExecuteProcess, RegisterEventHandler
98
from launch.conditions import IfCondition
109
from launch.event_handlers import OnProcessExit
1110
from launch.substitutions import LaunchConfiguration, PathJoinSubstitution

0 commit comments

Comments
 (0)