Search code examples
pythonsuppress-warningspylint

How to configure pylint in the python source


Is it possible to disable certain pylint errors/warnings in the python source code itself ?


Solution

  • The #pylint: disable syntax mentionned by @kalgasnik is the correct one. You can find more information about this in the Pylint FAQ (your question is meth2)