I am running PyLint on a Python project. PyLint makes many complaints about being unable to find numpy members. How can I avoid this while avoiding skipping membership check
Probably, it's confused with numpy's abstruse method of methods import. Namely, zeros
is in fact numpy.core.multiarray.zeros
, imported in numpy with statement
from .core import *
in turn imported with
from .numeric import *
and in numeric you'll find
zeros = multiarray.zeros
I guess I would be confused in place of PyLint!
See this bug for PyLint side of view.