]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Pylint: tests: fix superfluous-parens
authorMartin <martin.basti@gmail.com>
Sat, 2 Jul 2016 00:27:08 +0000 (02:27 +0200)
committerMartin <martin.basti@gmail.com>
Sat, 2 Jul 2016 00:27:08 +0000 (02:27 +0200)
tests/utest.py

index d02fe4137da45de2964377063c8b6e994e5aa54a..c0448d75f44a88ee51a32572f0f93b742939a704 100644 (file)
@@ -8,5 +8,5 @@ except ImportError:
 if __name__ == '__main__':
     sys.path.insert(0, os.path.realpath('..'))
     suites = unittest.defaultTestLoader.discover('.')
-    if (not unittest.TextTestRunner(verbosity=2).run(suites).wasSuccessful()):
+    if not unittest.TextTestRunner(verbosity=2).run(suites).wasSuccessful():
         sys.exit(1)