diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-12-23 16:54:30 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-12-23 16:54:30 -0500 |
commit | d8288282fcd54ec849b3345e564b8c3260d10bb5 (patch) | |
tree | 5877fe2021dad6fe134b686d2b66e440fd4d22eb /tests/plugin1.py | |
parent | abb1c6d955a8b90a3993e69ffbabe5244c609f2b (diff) | |
download | python-coveragepy-git-d8288282fcd54ec849b3345e564b8c3260d10bb5.tar.gz |
Pylint 1.8.1, and fix its new warnings
Diffstat (limited to 'tests/plugin1.py')
-rw-r--r-- | tests/plugin1.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/plugin1.py b/tests/plugin1.py index 63ebacf7..42769950 100644 --- a/tests/plugin1.py +++ b/tests/plugin1.py @@ -15,6 +15,7 @@ class Plugin(coverage.CoveragePlugin): """Trace only files named xyz.py""" if "xyz.py" in filename: return FileTracer(filename) + return None def file_reporter(self, filename): return FileReporter(filename) |