summaryrefslogtreecommitdiff
path: root/tests/plugin1.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-07-05 11:25:02 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-07-05 11:25:02 -0400
commit88c7ab85df6bf38ec7abe51bd8e1613121dd7c97 (patch)
treecb32a9ed8b1d4b6aa15f01baafedf17922e47c9b /tests/plugin1.py
parent4c3f5a33a2ae10376ba1312d299ad087a716a943 (diff)
downloadpython-coveragepy-88c7ab85df6bf38ec7abe51bd8e1613121dd7c97.tar.gz
Pylint warnings
Diffstat (limited to 'tests/plugin1.py')
-rw-r--r--tests/plugin1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugin1.py b/tests/plugin1.py
index fc6ac6f..0ba09d9 100644
--- a/tests/plugin1.py
+++ b/tests/plugin1.py
@@ -46,6 +46,6 @@ class FileReporter(coverage.plugin.FileReporter):
return set([])
-def coverage_init(reg, options):
+def coverage_init(reg, options): # pylint: disable=unused-argument
"""Called by coverage to initialize the plugins here."""
reg.add_file_tracer(Plugin())