This is an automated email from the ASF dual-hosted git repository.
gstein pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/steve.git
The following commit(s) were added to refs/heads/trunk by this push:
new 7acfcad trim E1101 errors -- they are not
7acfcad is described below
commit 7acfcada35804cacd5f405513328e540d43b44bb
Author: Greg Stein <[email protected]>
AuthorDate: Tue Sep 30 15:10:22 2025 -0500
trim E1101 errors -- they are not
---
pylintrc | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/pylintrc b/pylintrc
index d7e30de..e6a11ac 100644
--- a/pylintrc
+++ b/pylintrc
@@ -220,7 +220,10 @@ ignore-on-opaque-inference=yes
# 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,xml.parsers.expat
+# Suppresses the E1101: no-member lint error, for these classes.
+ignored-classes=
+ optparse.Values,thread._local,_thread._local,xml.parsers.expat,
+ easydict.EasyDict,asfpy.DB
# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime