Skip to content
Snippets Groups Projects
Commit 0b11fb4b authored by Philipp Hörist's avatar Philipp Hörist
Browse files

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
parent 69770417
No related branches found
No related tags found
No related merge requests found
...@@ -140,7 +140,7 @@ ignore-mixin-members=yes ...@@ -140,7 +140,7 @@ ignore-mixin-members=yes
# List of class names for which member attributes should not be checked (useful # List of class names for which member attributes should not be checked (useful
# for classes with dynamically set attributes). This supports the use of # for classes with dynamically set attributes). This supports the use of
# qualified names. # 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 # List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime # (useful for modules/projects where namespaces are manipulated during runtime
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment