Added more logging and changed flag name
diff --git a/samples/debugging/main.py b/samples/debugging/main.py
index 6fe0c0f..6108f47 100644
--- a/samples/debugging/main.py
+++ b/samples/debugging/main.py
@@ -21,23 +21,20 @@
 
 
 FLAGS = gflags.FLAGS
-# Uncomment the next line to get very detailed logging
-# httplib2.debuglevel = 4
 
-# create logger
 logger = logging.getLogger()
 logger.setLevel(logging.INFO)
 
 
 def main(argv):
   try:
-    argv = FLAGS(argv)  # parse flags
+    argv = FLAGS(argv)
   except gflags.FlagsError, e:
     print '%s\\nUsage: %s ARGS\\n%s' % (e, argv[0], FLAGS)
     sys.exit(1)
 
   service = build('translate', 'v2',
-                  developerKey='AIzaSyDRRpR3GS1F1_jKNNM9HCNd2wJQyPG3oN0',
+                  developerKey='AIzaSyAQIKv_gwnob-YNrXV2stnY86GSGY81Zr0',
                   model=LoggingJsonModel())
   print service.translations().list(
       source='en',
diff --git a/samples/prediction/main.py b/samples/prediction/main.py
index 5ae8d36..77c9df5 100644
--- a/samples/prediction/main.py
+++ b/samples/prediction/main.py
@@ -70,7 +70,7 @@
   print 'Training is complete'
 
   # Now make a prediction using that training
-  body = {'input': {'mixture':["mucho bueno"]}}
+  body = {'input': {'mixture': ["mucho bueno"]}}
   prediction = service.predict(body=body, data=OBJECT_NAME).execute()
   print 'The prediction is:'
   pprint.pprint(prediction)
diff --git a/samples/threadqueue/main.py b/samples/threadqueue/main.py
index 4570452..5415a65 100644
--- a/samples/threadqueue/main.py
+++ b/samples/threadqueue/main.py
@@ -121,8 +121,8 @@
             "presenter": "me"
             }
           }
-      topic_request = service.topics().insert(seriesId=series['id']['seriesId'],
-                                        body=topic_body)
+      topic_request = service.topics().insert(
+          seriesId=series['id']['seriesId'], body=topic_body)
       print "Adding request to queue"
       queue.put(topic_request)
   except CredentialsInvalidError: