summaryrefslogtreecommitdiff
path: root/tests/plugin2.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/plugin2.py
parent4c3f5a33a2ae10376ba1312d299ad087a716a943 (diff)
downloadpython-coveragepy-88c7ab85df6bf38ec7abe51bd8e1613121dd7c97.tar.gz
Pylint warnings
Diffstat (limited to 'tests/plugin2.py')
-rw-r--r--tests/plugin2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugin2.py b/tests/plugin2.py
index ebac210..6e875e5 100644
--- a/tests/plugin2.py
+++ b/tests/plugin2.py
@@ -41,6 +41,6 @@ class FileReporter(coverage.plugin.FileReporter):
return set(range(1, int(num)+1))
-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())