From: Michael Orlitzky Date: Tue, 1 Nov 2016 17:07:08 +0000 (-0400) Subject: Fix a pylint warning for a top-level variable name in test/__main__.py. X-Git-Tag: 0.1.0~97 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=4436c4f4742b29c1e6eed699d11e05bc9e1f8414 Fix a pylint warning for a top-level variable name in test/__main__.py. --- diff --git a/test/__main__.py b/test/__main__.py index 8d88f64..b0598e7 100755 --- a/test/__main__.py +++ b/test/__main__.py @@ -4,9 +4,7 @@ An implementation of __main__() that allows us to "run this module." """ from test import build_suite, run_suite -result = run_suite(build_suite()) - -if result.wasSuccessful(): +if run_suite(build_suite()).wasSuccessful(): exit(0) else: exit(1)