From 29356409a6827e78d3f5aa18d9a7939bee7b6fca Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 23 Nov 2014 06:29:35 -0500 Subject: Upgraded pylint to 1.4, removed useless suppressions --- coverage/backunittest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/backunittest.py') diff --git a/coverage/backunittest.py b/coverage/backunittest.py index b2b7ca2..648e74e 100644 --- a/coverage/backunittest.py +++ b/coverage/backunittest.py @@ -3,7 +3,7 @@ # Use unittest2 if it's available, otherwise unittest. This gives us # backported features for 2.6. try: - import unittest2 as unittest # pylint: disable=F0401 + import unittest2 as unittest except ImportError: import unittest -- cgit v1.2.1