How do I get Pylint to recognize NumPy members?
I am running Pylint on a Python project. Pylint makes many complaints about being unable to find NumPy members. How can I avoid … Read more
I am running Pylint on a Python project. Pylint makes many complaints about being unable to find NumPy members. How can I avoid … Read more
I split up my class constructor by letting it call multiple functions, like this: class Wizard: def __init__(self, argv): self.parse_arguments(argv) self.wave_wand() # declaration … Read more
I am using the following setup macOS v10.14 (Mojave) Python 3.7.1 Visual Studio Code 1.30 Pylint 2.2.2 Django 2.1.4 I want to use … Read more
Considering this code snippet: from os import walk files = [] for (dirpath, _, filenames) in walk(mydir): # More code that modifies files … Read more
I have the following line in my header: import config.logging_settings This actually changes my Python logging settings, but Pylint thinks it is an … Read more
For the following code: logger.debug(‘message: {}’.format(‘test’)) pylint produces the following warning: logging-format-interpolation (W1202): Use % formatting in logging functions and pass the % … Read more
I’m running PyLint from inside Wing IDE on Windows. I have a sub-directory (package) in my project and inside the package I import … Read more
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, … Read more