diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2016-12-30 19:28:32 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-12-30 19:28:32 +0200 |
commit | 6712bbe45888a7f26ca5c3e54f45c3956d87cc58 (patch) | |
tree | 44443f08a6237ca18b2c242c82b1ce5d880017d4 /pylint/checkers/classes.py | |
parent | 607e2bfcb236faa527a738a84a48434a236fd08d (diff) | |
download | pylint-git-6712bbe45888a7f26ca5c3e54f45c3956d87cc58.tar.gz |
Change the text of arguments-differ by making it more explicit
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 85e2eead6..a5155f8c0 100644 --- a/pylint/checkers/classes.py +++ b/pylint/checkers/classes.py @@ -376,7 +376,7 @@ MSGS = { 'Used when a method doesn\'t use its bound instance, and so could ' 'be written as a function.' ), - 'W0221': ('Arguments number differs from %s %r method', + 'W0221': ('Parameters differ from %s %r method', 'arguments-differ', 'Used when a method has a different number of arguments than in ' 'the implemented interface or in an overridden method.'), |