summaryrefslogtreecommitdiff
path: root/coverage/__init__.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-23 07:30:07 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-23 07:30:07 -0500
commit737f8ffa024563fb8315f94cdf1484aa7bdb6eaa (patch)
tree4f509ac85244bdb4b251b1134257e0eadb020f62 /coverage/__init__.py
parentdf5b3c800fdf4a2eef373196b1f0a166279a3566 (diff)
parentd0a872c92e0e8c6ebb9530c2b61f2b9582612fb4 (diff)
downloadpython-coveragepy-737f8ffa024563fb8315f94cdf1484aa7bdb6eaa.tar.gz
Merged pull request 43: --skip-covered
Diffstat (limited to 'coverage/__init__.py')
-rw-r--r--coverage/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/__init__.py b/coverage/__init__.py
index 67dd6e8..3a52c1d 100644
--- a/coverage/__init__.py
+++ b/coverage/__init__.py
@@ -34,9 +34,9 @@ def _singleton_method(name):
called.
"""
- # Disable pylint msg W0612, because a bunch of variables look unused, but
+ # Disable pylint message, because a bunch of variables look unused, but
# they're accessed via locals().
- # pylint: disable=W0612
+ # pylint: disable=unused-variable
def wrapper(*args, **kwargs):
"""Singleton wrapper around a coverage method."""