Pylint can't find SQLAlchemy query member
I have a Flask (v0.10.1) application using Flask-SQLAlchemy (v2.0) and I'm trying to configure Pylint to check it. Running with Python 3.4.2. First error was: Instance of 'SQLAlchemy' has no 'Table' member (no-member) And I fixed this one ignoring the check for member attributes on SQLAlchemy: ignored-classes=SQLAlchemy But I'm having a problem with the query member on entities: Class 'UserToken' has no 'query' member (no-member) Is there any way to fix this issue without having to ignore no-member errors on every query call? Flask bootstrap: from flask import Flask from flask_sqlalchemy