summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2015-02-26 17:19:53 -0500
committerPavel Roskin <proski@gnu.org>2015-02-26 17:19:53 -0500
commit49c7471952710c5c56a5255654070e33f8cda590 (patch)
treea5091646dd04ea0acd42b794d2077a2d835f306d
parent03d30c821a6d646d6fb6b36a2d236d75b8b0db5f (diff)
downloadpylint-49c7471952710c5c56a5255654070e33f8cda590.tar.gz
Remove excessive quotes in docstrings
-rw-r--r--pylint/checkers/format.py2
-rw-r--r--pylint/test/functional/arguments.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py
index 94a9e8e..6fd6491 100644
--- a/pylint/checkers/format.py
+++ b/pylint/checkers/format.py
@@ -303,7 +303,7 @@ class ContinuedLineState(object):
self.retained_warnings.append((token_position, state, valid_offsets))
def get_valid_offsets(self, idx):
- """"Returns the valid offsets for the token at the given position."""
+ """Returns the valid offsets for the token at the given position."""
# The closing brace on a dict or the 'for' in a dict comprehension may
# reset two indent levels because the dict value is ended implicitly
stack_top = -1
diff --git a/pylint/test/functional/arguments.py b/pylint/test/functional/arguments.py
index 4517f69..d308790 100644
--- a/pylint/test/functional/arguments.py
+++ b/pylint/test/functional/arguments.py
@@ -66,7 +66,7 @@ LAMBDA = lambda arg: 1
LAMBDA() # [no-value-for-parameter]
def method_tests():
- """"Method invocations."""
+ """Method invocations."""
demo = DemoClass()
demo.static_method() # [no-value-for-parameter]
DemoClass.static_method() # [no-value-for-parameter]