diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
commit | 622742746327abccd848d40583c9d7bc8bcb096c (patch) | |
tree | a1419e5f0df1bf266abca7728d0376e2fae8afcb /coverage/__init__.py | |
parent | b26cf4981ebc3bdbcec03386b4ee2734f5e9a444 (diff) | |
download | python-coveragepy-git-622742746327abccd848d40583c9d7bc8bcb096c.tar.gz |
Change all pylint message codes to message names
Diffstat (limited to 'coverage/__init__.py')
-rw-r--r-- | coverage/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/__init__.py b/coverage/__init__.py index 67dd6e88..3a52c1d6 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.""" |