diff options
Diffstat (limited to 'pylint/constants.py')
-rw-r--r-- | pylint/constants.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pylint/constants.py b/pylint/constants.py index 0dbb479b3..2fe436579 100644 --- a/pylint/constants.py +++ b/pylint/constants.py @@ -184,6 +184,8 @@ DELETED_MESSAGES = [ DeletedMessage("C0326", "bad-whitespace"), # Pylint 1.4.3 DeletedMessage("W0142", "star-args"), + # https://github.com/PyCQA/pylint/issues/2409 + DeletedMessage("W0232", "no-init"), ] |