From 97afcd5809269e885a0dde349081802a427c5674 Mon Sep 17 00:00:00 2001 From: michellethomas Date: Fri, 16 Mar 2018 16:20:25 -0700 Subject: [PATCH] Adding to list of generated-members to fix pylint errors (#4632) * Adding to list of generated-members * Updating to ignore-classes sqlalchemy scoped_session --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 8a0e0ed78..be82d9d54 100644 --- a/.pylintrc +++ b/.pylintrc @@ -282,7 +282,7 @@ ignored-modules=numpy,pandas,alembic.op,sqlalchemy,alembic.context,flask_appbuil # List of class names for which member attributes should not be checked (useful # for classes with dynamically set attributes). This supports the use of # qualified names. -ignored-classes=optparse.Values,thread._local,_thread._local +ignored-classes=optparse.Values,thread._local,_thread._local,sqlalchemy.orm.scoping.scoped_session # List of members which are set dynamically and missed by pylint inference # system, and so shouldn't trigger E1101 when accessed. Python regular