Disable W0237 in pylint

Disables "arguments-renamed" warning. A warning is
emited is when a used method parameter has a different
name than in the implemented interface or method.

Story: 2006796
Task: 42815

Signed-off-by: Charles Short <charles.short@windriver.com>
Change-Id: Ideb45a37612a3e86734a0b77d3e7639158cf8d02
This commit is contained in:
Charles Short 2021-07-12 13:50:20 -04:00
parent c50b3b8760
commit d0d380da09
1 changed files with 2 additions and 1 deletions

View File

@ -54,6 +54,7 @@ extension-pkg-whitelist=lxml.etree,greenlet
# W0221 arguments-differ
# W0223 abstract-method
# W0231 super-init-not-called
# W0237 arguments-renamed
# W0235 useless-super-delegation
# W0311 bad-indentation
# W0403 relative-import (this needs to be fixed in py3)
@ -71,7 +72,7 @@ extension-pkg-whitelist=lxml.etree,greenlet
# E1120 no-value-for-parameter
# E1121 too-many-function-args
disable=C, R, fixme,
W0102,W0106,W0107,W0110,W0201,W0212,W0221,W0223,W0231,W0235,
W0102,W0106,W0107,W0110,W0201,W0212,W0221,W0223,W0231,W0237,W0235,
W0311,W0403,W0603,W0612,W0613,W0621,W0622,W0703,W1401,
E0604,E1101,E1102,E1120,E1121