summaryrefslogtreecommitdiff
path: root/coverage/backunittest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:29:35 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:29:35 -0500
commit29356409a6827e78d3f5aa18d9a7939bee7b6fca (patch)
treeab1281f62f1be63d346707c5fc812596010bc347 /coverage/backunittest.py
parentf81c9233740f5c2968447dd58d1185fa24994df0 (diff)
downloadpython-coveragepy-29356409a6827e78d3f5aa18d9a7939bee7b6fca.tar.gz
Upgraded pylint to 1.4, removed useless suppressions
Diffstat (limited to 'coverage/backunittest.py')
-rw-r--r--coverage/backunittest.py2
1 files changed, 1 insertions, 1 deletions
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