From 7e844b5991c08a92cfc6d4632489602d93855f08 Mon Sep 17 00:00:00 2001 From: Patrick Goebel Date: Sun, 2 Oct 2016 08:29:52 -0700 Subject: [PATCH] Removed harmless extra space --- ros_arduino_python/src/ros_arduino_python/servo_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ros_arduino_python/src/ros_arduino_python/servo_controller.py b/ros_arduino_python/src/ros_arduino_python/servo_controller.py index c1aa799..b76bf5a 100755 --- a/ros_arduino_python/src/ros_arduino_python/servo_controller.py +++ b/ros_arduino_python/src/ros_arduino_python/servo_controller.py @@ -87,7 +87,7 @@ class Servo(Joint): self.joint_speed_scale_correction = rospy.get_param(namespace + 'joint_speed_scale_correction', 1.0) # Get the initial servo speed in degrees per second - self.servo_speed = radians(rospy.get_param(namespace + 'init_speed', 60.0)) + self.servo_speed = radians(rospy.get_param(namespace + 'init_speed', 60.0)) self.direction = copysign(1, -self.servo_speed)