Silence needless pylint warnings

This commit is contained in:
Ned Batchelder
2016-07-31 11:20:35 -04:00
parent 8571ceabeb
commit ecffdacf5a

View File

@@ -33,7 +33,7 @@ def intercepted_function(raise_error=None):
"""
if raise_error is not None:
raise raise_error
raise raise_error # pylint: disable=raising-bad-type
class InterceptErrorsTest(TestCase):