Pylint complains about wxPython - 'Too many public methods'

Solution 1:

# pylint: disable=R0904

Stick that at the top of the offending class.

On older versions of Pylint, you have to use

# pylint: disable-msg=R0904

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