diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-14 21:34:24 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-14 21:34:24 -0400 |
commit | b1492c4fc5b616bd23d09500fc42b58b846bdfe3 (patch) | |
tree | d9af0509a65472cba0232322437b4d6b02686406 | |
parent | f51768619b5d63d2e21895f517ac86873ce70ef9 (diff) | |
download | python-coveragepy-b1492c4fc5b616bd23d09500fc42b58b846bdfe3.tar.gz |
Remove an unneeded pylint pragma
-rw-r--r-- | tests/test_summary.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index fda44ee..5f55356 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -338,7 +338,6 @@ class SummaryTest(CoverageTest): self.make_file("mycode.py", "This isn't python at all!") report = self.report_from_command("coverage report mycode.py") - # pylint: disable=line-too-long # Name Stmts Miss Cover # ---------------------------- # mycode NotPython: Couldn't parse '...' as Python source: 'invalid syntax' at line 1 |