[ACCEPTED]-pylint complains about wxPython 'Too many public methods'-pylint

Accepted answer
Score: 17
# pylint: disable=R0904

Stick that at the top of the offending class.

On 4 older versions of pylint, you have to use

# pylint: disable-msg=R0904

Unfortunately, if 3 you ever upgrade to a more recent version 2 you'll have to write a sed script to replace 1 all instances of # pylint: disable-msg with # pylint: disable.

More Related questions