From 4436c4f4742b29c1e6eed699d11e05bc9e1f8414 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 1 Nov 2016 13:07:08 -0400 Subject: [PATCH] Fix a pylint warning for a top-level variable name in test/__main__.py. --- test/__main__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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) -- 2.43.2