Change several python and robot files to 110 chars

Taking advantage of current team limit of 110 chars.

Change-Id: If7ab51fe894889967b8c8bb2f2fa4664f01117d5
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>
diff --git a/templates/python_pgm_template b/templates/python_pgm_template
index 11db412..b7fe32f 100644
--- a/templates/python_pgm_template
+++ b/templates/python_pgm_template
@@ -32,12 +32,11 @@
 def exit_function(signal_number=0,
                   frame=None):
     r"""
-    Execute whenever the program ends normally or with the signals that we
-    catch (i.e. TERM, INT).
+    Execute whenever the program ends normally or with the signals that we catch (i.e. TERM, INT).
     """
 
-    # This function will be called by gen_exit_function().  If you have no
-    # cleanup to do, you can delete this function altogether.
+    # This function will be called by gen_exit_function().  If you have no cleanup to do, you can delete
+    # this function altogether.
 
     # Your cleanup code here.
 
@@ -47,8 +46,8 @@
     Validate program parameters, etc.
     """
 
-    # This function will be called by gen_setup().  If you have no validation
-    # to do, you can delete this function altogether.
+    # This function will be called by gen_setup().  If you have no validation to do, you can delete this
+    # function altogether.
 
     # Your validation code here...
     # valid_value(whatever)