From 0be9de1ff6b6a852849d31fedfb41b94bec63267 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 19 Nov 2012 22:10:36 -0500 Subject: lint lint --- test/test_summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_summary.py') diff --git a/test/test_summary.py b/test/test_summary.py index 933bcbe..b460c2d 100644 --- a/test/test_summary.py +++ b/test/test_summary.py @@ -201,7 +201,7 @@ class SummaryTest(CoverageTest): """) cov = coverage.coverage(branch=True, source=["."]) cov.start() - import main + import main # pylint: disable=F0401,W0612 cov.stop() report = self.get_report(cov).splitlines() self.assertIn("mybranch 5 5 2 2 0%", report) -- cgit v1.2.1