diff options
Diffstat (limited to 'coverage/debug.py')
-rw-r--r-- | coverage/debug.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coverage/debug.py b/coverage/debug.py index 77ff3d11..3a6b1fdc 100644 --- a/coverage/debug.py +++ b/coverage/debug.py @@ -93,7 +93,8 @@ class DebugControlString(DebugControl): class NoDebugging(object): """A replacement for DebugControl that will never try to do anything.""" - def should(self, option): + def should(self, option): # pylint: disable=unused-argument + """Should we write debug messages? Never.""" return False |