Commit 9c78c104 authored by Arnaud Fontaine's avatar Arnaud Fontaine

ZODB Components: Disable spurious Pylint warning: 'Access to a protected...

ZODB Components: Disable spurious Pylint warning: 'Access to a protected member %s of a client class'.
parent a282fc24
......@@ -352,6 +352,8 @@ class ComponentMixin(PropertyRecordableMixin, Base):
# map is faster than its recommended replacement (list
# comprehension)
'--bad-functions=apply,input',
# 'Access to a protected member %s of a client class'
'--disable=W0212',
# string module does not only contain deprecated functions...
'--deprecated-modules=regsub,TERMIOS,Bastion,rexec'],
reporter=TextReporter(output_file), exit=False)
......
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