diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-05 11:25:02 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-05 11:25:02 -0400 |
commit | f310f22a92c88cd3984e2bedf80be802cd0818d2 (patch) | |
tree | 8b922fc20224a586cc76b667c06fa82917ff4d79 /tests/plugin2.py | |
parent | cb8b5b581571cdeacae82376e0e571895e2c76a9 (diff) | |
download | python-coveragepy-git-f310f22a92c88cd3984e2bedf80be802cd0818d2.tar.gz |
Pylint warnings
Diffstat (limited to 'tests/plugin2.py')
-rw-r--r-- | tests/plugin2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugin2.py b/tests/plugin2.py index ebac210d..6e875e5e 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()) |