summaryrefslogtreecommitdiff
path: root/test/test_summary.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-11-11 14:32:29 -0500
committerNed Batchelder <ned@nedbatchelder.com>2012-11-11 14:32:29 -0500
commit2d750f9ad73276e08eb638838475f5709adb2d14 (patch)
tree74fc7a3f5b8bdbe851e00fc645f1d1e4498ef820 /test/test_summary.py
parent4ca208dc289961310eb1e548bc042d42f8140751 (diff)
downloadpython-coveragepy-2d750f9ad73276e08eb638838475f5709adb2d14.tar.gz
lint
Diffstat (limited to 'test/test_summary.py')
-rw-r--r--test/test_summary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_summary.py b/test/test_summary.py
index ec8ca29..644aa9d 100644
--- a/test/test_summary.py
+++ b/test/test_summary.py
@@ -183,7 +183,7 @@ class SummaryTest(CoverageTest):
"""A helper for the next few tests."""
cov = coverage.coverage()
cov.start()
- import TheCode
+ import TheCode # pylint: disable=F0401,W0612
cov.stop()
repout = StringIO()