From 0b11fb4b5612461c978fc152696dfaa41666bda2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= <philipp@hoerist.com> Date: Mon, 2 Dec 2019 22:27:32 +0100 Subject: [PATCH] Update pylintrc pylint throws false positive no-member errors because the class is overridden in pygobject and pylint seem not to pick up on this --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index f6ace0e4f2..c877eaf5a4 100644 --- a/pylintrc +++ b/pylintrc @@ -140,7 +140,7 @@ ignore-mixin-members=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 +ignored-classes=optparse.Values,thread._local,_thread._local,gi.repository.GLib.Error # List of module names for which member attributes should not be checked # (useful for modules/projects where namespaces are manipulated during runtime -- GitLab