Fix pep8 issues

The pep8 jobs aren't running in gate at the moment.
Fix up the pep8 issues and remove the tox filter that stopped it
from running.

Also ignore E129 (visually indented line with same indent as next
logical line) as we don't follow it.

Change-Id: I394708ba96797bbc6fcd951e6436a104be0a3746
diff --git a/tests/test_zuultrigger.py b/tests/test_zuultrigger.py
index 9a90a98..3f339be 100644
--- a/tests/test_zuultrigger.py
+++ b/tests/test_zuultrigger.py
@@ -15,7 +15,6 @@
 # under the License.
 
 import logging
-import time
 
 from tests.base import ZuulTestCase
 
@@ -46,9 +45,9 @@
         A.addApproval('CRVW', 2)
         B1.addApproval('CRVW', 2)
         B2.addApproval('CRVW', 2)
-        A.addApproval('VRFY', 1)  # required by gate
-        B1.addApproval('VRFY', -1) # should go to check
-        B2.addApproval('VRFY', 1)  # should go to gate
+        A.addApproval('VRFY', 1)    # required by gate
+        B1.addApproval('VRFY', -1)  # should go to check
+        B2.addApproval('VRFY', 1)   # should go to gate
         B1.addApproval('APRV', 1)
         B2.addApproval('APRV', 1)
         B1.setDependsOn(A, 1)
@@ -106,11 +105,14 @@
         self.assertEqual(C.reported, 0)
         self.assertEqual(D.reported, 0)
         self.assertEqual(E.reported, 0)
-        self.assertEqual(B.messages[0],
+        self.assertEqual(
+            B.messages[0],
             "Merge Failed.\n\nThis change was unable to be automatically "
             "merged with the current state of the repository. Please rebase "
             "your change and upload a new patchset.")
-        self.assertEqual(self.fake_gerrit.queries[0], "project:org/project status:open")
+
+        self.assertEqual(self.fake_gerrit.queries[0],
+                         "project:org/project status:open")
 
         # Reconfigure and run the test again.  This is a regression
         # check to make sure that we don't end up with a stale trigger
@@ -129,8 +131,10 @@
         self.assertEqual(C.reported, 0)
         self.assertEqual(D.reported, 2)
         self.assertEqual(E.reported, 1)
-        self.assertEqual(E.messages[0],
+        self.assertEqual(
+            E.messages[0],
             "Merge Failed.\n\nThis change was unable to be automatically "
             "merged with the current state of the repository. Please rebase "
             "your change and upload a new patchset.")
-        self.assertEqual(self.fake_gerrit.queries[1], "project:org/project status:open")
+        self.assertEqual(self.fake_gerrit.queries[1],
+                         "project:org/project status:open")