From 9ca711bd996fe6098b1ab168575bcef5f43f5078 Mon Sep 17 00:00:00 2001 From: Nikolay Korovaiko Date: Mon, 11 May 2020 13:50:31 -0700 Subject: [PATCH] address python lint warnings --- test/run_test.py | 1 - test/test_distributions.py | 1 - 2 files changed, 2 deletions(-) diff --git a/test/run_test.py b/test/run_test.py index 72622ab4d7c6a..9ea0aca97fd4e 100755 --- a/test/run_test.py +++ b/test/run_test.py @@ -678,7 +678,6 @@ def main(): # return code -N, where N is the signal number. signal_name = SIGNALS_TO_NAMES_DICT[-return_code] message += ' Received signal: {}'.format(signal_name) - #print(message, file=sys.stderr) raise RuntimeError(message) if options.coverage: shell(['coverage', 'combine']) diff --git a/test/test_distributions.py b/test/test_distributions.py index 159f3706a71d6..e1096fae2124a 100644 --- a/test/test_distributions.py +++ b/test/test_distributions.py @@ -1398,7 +1398,6 @@ def test_uniform(self): high.grad.zero_() @unittest.skipIf(not TEST_NUMPY, "NumPy not found") - def test_vonmises_sample(self): for loc in [0.0, math.pi / 2.0]: for concentration in [0.03, 0.3, 1.0, 10.0, 100.0]: