Commit ad95bcbc authored by Jérome Perrin's avatar Jérome Perrin

pylint: disable duplicate-bases

false positive from base classes are propagated in any class inheriting
from Folder of Base. Disabling is more practical because duplicate-bases
errors are not common.
parent c9203485
Pipeline #33731 failed with stage
in 0 seconds
......@@ -539,6 +539,8 @@ def checkPythonSourceCode(source_code_str, portal_type=None):
# TODO-arnau: Enable it properly would require inspection API
# '%s %r has no %r member'
'--disable=E1101,E1103',
# XXX duplicate-bases causes too many false positives
'--disable=duplicate-bases',
# map and filter should not be considered bad as in some cases
# map is faster than its recommended replacement (list
# comprehension)
......
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