diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-10-18 06:52:58 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-10-18 06:52:58 -0400 |
commit | fafa21ac89ba49069c62ecd3bee802e9cab7e2c0 (patch) | |
tree | a46f13d74c7d37cb62eab81a807c0867862611d2 /tests/test_context.py | |
parent | 070d3d1db11ab092860c660136744d886e750105 (diff) | |
download | python-coveragepy-git-fafa21ac89ba49069c62ecd3bee802e9cab7e2c0.tar.gz |
Upgrade pylint
Diffstat (limited to 'tests/test_context.py')
-rw-r--r-- | tests/test_context.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_context.py b/tests/test_context.py index b002b603..137300a5 100644 --- a/tests/test_context.py +++ b/tests/test_context.py @@ -201,7 +201,7 @@ def get_qualname(): caller_frame = stack[0][0] return qualname_from_frame(caller_frame) -# pylint: disable=missing-docstring, unused-argument +# pylint: disable=missing-class-docstring, missing-function-docstring, unused-argument class Parent(object): def meth(self): @@ -239,7 +239,7 @@ class OldStyle: class OldChild(OldStyle): pass -# pylint: enable=missing-docstring, unused-argument +# pylint: enable=missing-class-docstring, missing-function-docstring, unused-argument class QualnameTest(CoverageTest): |