Skip to content

Commit

Permalink
Non-functional linting issues resulting in CI failures (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
civerachb-cpr authored Dec 17, 2024
1 parent e2984b4 commit 64faf39
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,15 +182,15 @@ def __init__(
package='ros_gz_bridge',
executable='parameter_bridge',
parameters=[{'use_sim_time': True}],
arguments = [
arguments=[
cmd_ns + '/cmd_pan_vel' + self.ROS_TO_GZ_FLOAT,
cmd_ns + '/cmd_tilt_vel' + self.ROS_TO_GZ_FLOAT,
cmd_ns + '/pan_joint_state' + self.GZ_TO_ROS_JOINTSTATE,
cmd_ns + '/tilt_joint_state' + self.GZ_TO_ROS_JOINTSTATE,
],
remappings=[
(cmd_ns + '/pan_joint_state', '/' + self._robot_namespace + '/platform/joint_states'),
(cmd_ns + '/tilt_joint_state', '/' + self._robot_namespace + '/platform/joint_states'),
(cmd_ns + '/pan_joint_state', '/' + self._robot_namespace + '/platform/joint_states'), # noqa:E501
(cmd_ns + '/tilt_joint_state', '/' + self._robot_namespace + '/platform/joint_states'), # noqa:E501
(cmd_ns + '/cmd_pan_vel', cmd_ns + '/_/cmd_pan_vel'),
(cmd_ns + '/cmd_tilt_vel', cmd_ns + '/_/cmd_tilt_vel'),
],
Expand Down

0 comments on commit 64faf39

Please sign in to comment.