diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2016-07-23 22:42:47 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-07-23 22:42:47 +0300 |
commit | 6ece3046d3fe08f357796f869a830b976e5cc5cc (patch) | |
tree | b60b0271b6a20e5b5328cf1607720dc7c96477cb /pylint/checkers/classes.py | |
parent | f214ab1299948f3e021d6bce9b78dff807945775 (diff) | |
download | pylint-git-6ece3046d3fe08f357796f869a830b976e5cc5cc.tar.gz |
Grammar fix
Diffstat (limited to 'pylint/checkers/classes.py')
-rw-r--r-- | pylint/checkers/classes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/classes.py b/pylint/checkers/classes.py index 43b05aee1..da2ce839b 100644 --- a/pylint/checkers/classes.py +++ b/pylint/checkers/classes.py @@ -1222,7 +1222,7 @@ class SpecialMethodsChecker(BaseChecker): # This can support a variable number of parameters. return if not len(node.args.args) and not node.args.vararg: - # Method has no parameter, will be catched + # Method has no parameter, will be caught # by no-method-argument. return |