Skip to content
Advertisement

Tag: pylint

How do I disable a Pylint warning?

I’m trying to disable warning C0321 (“more than one statement on a single line” — I often put if statements with short single-line results on the same line), in Pylint 0.21.1 (if it matters: astng 0.20.1, common 0.50.3, and Python 2.6.6 (r266:84292, Sep 15 2010, 16:22:56)). I’ve tried adding disable=C0321 in the Pylint configuration file, but Pylint insists on reporting

Advertisement