From cc828900b37e48a542d1f2718df478c505684e6e Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 16 Oct 2018 22:22:16 -0400 Subject: Clean some lint --- coverage/debug.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'coverage/debug.py') 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 -- cgit v1.2.1