Commit 00644c23 authored by Jérome Perrin's avatar Jérome Perrin

fixup! fixup! fixup! fixup! pylint: dummy plugin to ignore messages on python2

parent 33d06f71
Pipeline #34222 failed with stage
in 0 seconds
......@@ -8,6 +8,11 @@ class CompatibilityDisableChecker(checkers.BaseChecker):
name = "compatibility-disable"
msgs = {
"E9990": (
"not-an-iterable",
"not-an-iterable",
"",
),
"E9991": (
"misplaced-bare-raise",
"misplaced-bare-raise",
......@@ -32,7 +37,27 @@ class CompatibilityDisableChecker(checkers.BaseChecker):
"unsubscriptable-object",
"unsubscriptable-object",
"",
)
),
"E9996": (
"invalid-unary-operand-type",
"invalid-unary-operand-type",
"",
),
"E9997": (
"unbalanced-dict-unpacking",
"unbalanced-dict-unpacking",
"",
),
"E9998": (
"self-cls-assignment",
"self-cls-assignment",
"",
),
"E9999": (
"deprecated-class",
"deprecated-class",
"",
),
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment