diff options
Diffstat (limited to 'pylint/constants.py')
-rw-r--r-- | pylint/constants.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pylint/constants.py b/pylint/constants.py index c3b94863d..1a06ea832 100644 --- a/pylint/constants.py +++ b/pylint/constants.py @@ -80,9 +80,7 @@ class DeletedMessage(NamedTuple): old_names: List[Tuple[str, str]] = [] -DELETED_MSGID_PREFIXES = [ - 16, # the PY3K+ checker, see https://github.com/PyCQA/pylint/pull/4942 -] +DELETED_MSGID_PREFIXES: List[int] = [] DELETED_MESSAGES = [ # Everything until the next comment is from the @@ -139,7 +137,6 @@ DELETED_MESSAGES = [ DeletedMessage("W1638", "range-builtin-not-iterating"), DeletedMessage("W1639", "filter-builtin-not-iterating"), DeletedMessage("W1640", "using-cmp-argument"), - DeletedMessage("W1641", "eq-without-hash"), DeletedMessage("W1642", "div-method"), DeletedMessage("W1643", "idiv-method"), DeletedMessage("W1644", "rdiv-method"), |