diff options
Diffstat (limited to 'coverage/__init__.py')
-rw-r--r-- | coverage/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/coverage/__init__.py b/coverage/__init__.py index e2db3a56..2fc49d0f 100644 --- a/coverage/__init__.py +++ b/coverage/__init__.py @@ -36,6 +36,10 @@ def _singleton_method(name): called. """ + # Disable pylint msg W0612, because a bunch of variables look unused, but + # they're accessed via locals(). + # pylint: disable=W0612 + def wrapper(*args, **kwargs): """Singleton wrapper around a coverage method.""" global _the_coverage |