diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:29:35 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:29:35 -0500 |
commit | 29356409a6827e78d3f5aa18d9a7939bee7b6fca (patch) | |
tree | ab1281f62f1be63d346707c5fc812596010bc347 /coverage/backunittest.py | |
parent | f81c9233740f5c2968447dd58d1185fa24994df0 (diff) | |
download | python-coveragepy-29356409a6827e78d3f5aa18d9a7939bee7b6fca.tar.gz |
Upgraded pylint to 1.4, removed useless suppressions
Diffstat (limited to 'coverage/backunittest.py')
-rw-r--r-- | coverage/backunittest.py | 2 |
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 |