diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-11 14:32:29 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-11 14:32:29 -0500 |
commit | 431d3a989ada6e52fb556ee4419c15d188c26501 (patch) | |
tree | 9f1945281a9d413ffe55d843e26f39d4031432f3 /test/test_summary.py | |
parent | e273052668abb6f5e6a159ddad040d5f97e3a91a (diff) | |
download | python-coveragepy-git-431d3a989ada6e52fb556ee4419c15d188c26501.tar.gz |
lint
Diffstat (limited to 'test/test_summary.py')
-rw-r--r-- | test/test_summary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_summary.py b/test/test_summary.py index ec8ca291..644aa9dd 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() |