pylint complain about pandas class instances::
I have db instance that has data
(a panda Dataframe) as instance.
If I call e.g. iloc or shape on it::
cols = db.data.shape
xxx = db.data.iloc[1:4, 0:9]
pylint complain about::
E: 36,18: Instance of 'TextFileReader' has no 'iloc' member (no-member)
E: 92,30: Instance of 'TextFileReader' has no 'shape' member (no-member)
E: 92,30: Instance of 'tuple' has no 'shape' member (no-member)
I've try How do I get PyLint to recognize numpy members? and Disabling Pylint no member- E1101 error for specific libraries with no success.