summaryrefslogtreecommitdiff
path: root/tests/extensions/test_check_docs.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-20 14:09:16 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-20 14:32:11 +0200
commit15d2eaa13bd0d407dec693af730da9b675038996 (patch)
treeb9c47c04ef27e881920e5a7e4097d4084df6e6ae /tests/extensions/test_check_docs.py
parent74aa678f035b214b6de0fd6659b9864be6d37e95 (diff)
downloadpylint-git-15d2eaa13bd0d407dec693af730da9b675038996.tar.gz
[tests lint] Fix all W0612 unused-variable in pylint's own tests
Diffstat (limited to 'tests/extensions/test_check_docs.py')
-rw-r--r--tests/extensions/test_check_docs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extensions/test_check_docs.py b/tests/extensions/test_check_docs.py
index 90ccf6334..ceec4324e 100644
--- a/tests/extensions/test_check_docs.py
+++ b/tests/extensions/test_check_docs.py
@@ -1830,7 +1830,7 @@ class TestParamDocChecker(CheckerTestCase):
"""Example of a property having missing return documentation in
a Sphinx style docstring
"""
- property_node, node = astroid.extract_node(
+ _, node = astroid.extract_node(
"""
class Foo(object):
@property
@@ -1872,7 +1872,7 @@ class TestParamDocChecker(CheckerTestCase):
"""Example of a property having return documentation in
a Google style docstring
"""
- property_node, node = astroid.extract_node(
+ _, node = astroid.extract_node(
"""
class Foo(object):
@property