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
commitb26cf4981ebc3bdbcec03386b4ee2734f5e9a444 (patch)
treef037dbb904169d1fa53d0c51961b0ee08b389e8a /coverage/backunittest.py
parentf4b9914ab81eca5762b66446afa3fd57f84d5ec5 (diff)
downloadpython-coveragepy-git-b26cf4981ebc3bdbcec03386b4ee2734f5e9a444.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 b2b7ca2f..648e74ef 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