diff options
author | James Ennis <james.ennis@codethink.com> | 2018-03-16 11:30:29 +0000 |
---|---|---|
committer | James Ennis <james.ennis@codethink.com> | 2018-03-16 11:44:45 +0000 |
commit | 47ec4f5259a7eae97d8458bd51fb0507b2f4c39b (patch) | |
tree | 2fce6bacb730fc701a3f02a3fc8d70c6f2e28844 /.pylintrc | |
parent | c187ab76168a5f5a3412350bd81d9e4c88c70b7e (diff) | |
download | buildstream-47ec4f5259a7eae97d8458bd51fb0507b2f4c39b.tar.gz |
.pylintrc: Ensure pylint ignores gi.repository module as it dynamically adds classes
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -193,7 +193,7 @@ ignored-classes=optparse.Values,thread._local,_thread._local,contextlib.closing, # (useful for modules/projects where namespaces are manipulated during runtime # and thus existing member attributes cannot be deduced by static analysis. It # supports qualified module names, as well as Unix pattern matching. -ignored-modules=pkg_resources +ignored-modules=pkg_resources,gi.repository # Show a hint with possible names when a member name was not found. The aspect # of finding the hint is based on edit distance. |