Commit 6564847d authored by Jérome Perrin's avatar Jérome Perrin

patches/pylint: make it possible to disable repeated-keyword on py2

parent ff9cb4cb
......@@ -62,7 +62,12 @@ class CompatibilityDisableChecker(checkers.BaseChecker):
"possibly-used-before-assignment",
"possibly-used-before-assignment",
""
)
),
"E9987": (
"repeated-keyword",
"repeated-keyword",
""
),
}
......
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