summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-23 13:39:27 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-23 13:39:27 -0500
commitf9adb85a13c808aec50746d8db37a642c9a266ed (patch)
tree25a5f0f8c6298cafb0a3271d7ed94ad240bda8b8 /tests
parentd0795c2b810d9649fdfbd559bcdcc59e8d30de97 (diff)
downloadpython-coveragepy-f9adb85a13c808aec50746d8db37a642c9a266ed.tar.gz
Clean up some pylint messages
Diffstat (limited to 'tests')
-rw-r--r--tests/test_misc.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_misc.py b/tests/test_misc.py
index a2b39a8..977378d 100644
--- a/tests/test_misc.py
+++ b/tests/test_misc.py
@@ -88,8 +88,8 @@ class OverridesTest(CoverageTest):
run_in_temp_dir = False
def test_overrides(self):
+ # pylint: disable=missing-docstring
class SomeBase(object):
- """Base class, two base methods."""
def method1(self):
pass
@@ -97,7 +97,6 @@ class OverridesTest(CoverageTest):
pass
class Derived1(SomeBase):
- """Simple single inheritance."""
def method1(self):
pass