diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-28 20:45:18 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-28 20:45:18 -0400 |
commit | cb777b033f49ef18ef8e9098404a50df56bf8207 (patch) | |
tree | f827c0a09bf26a81620a742c6da278395ba09b53 /tests/test_context.py | |
parent | b528c1e91d56761e7ca89074164859f26bfdd7f3 (diff) | |
download | python-coveragepy-git-cb777b033f49ef18ef8e9098404a50df56bf8207.tar.gz |
Lint
Diffstat (limited to 'tests/test_context.py')
-rw-r--r-- | tests/test_context.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_context.py b/tests/test_context.py index 2473c694..4d89017b 100644 --- a/tests/test_context.py +++ b/tests/test_context.py @@ -198,11 +198,11 @@ def get_qualname(): class Parent(object): # pylint: disable=missing-docstring - def meth(self): + def meth(self): # pylint: disable=missing-docstring return get_qualname() @property - def a_property(self): + def a_property(self): # pylint: disable=missing-docstring return get_qualname() class Child(Parent): # pylint: disable=missing-docstring @@ -214,7 +214,7 @@ class SomethingElse(object): # pylint: disable=missing-docstr class MultiChild(SomethingElse, Child): # pylint: disable=missing-docstring pass -def fake_out(self): # pylint: disable=missing-docstring +def fake_out(self): # pylint: disable=missing-docstring, unused-argument return get_qualname() |