diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-20 14:32:05 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-20 14:32:05 +0900 |
commit | 61889ed524c9a54e14bd335db871c69abf40f0c2 (patch) | |
tree | b6ab84535a38217011a69491627c162ae030c599 /buildstream/plugins/sources/ostree.py | |
parent | 78bd7f565f0c86c295f882d662fab2fa39d06cc1 (diff) | |
download | buildstream-61889ed524c9a54e14bd335db871c69abf40f0c2.tar.gz |
plugins: Disable attribute-defined-outside-init pylint error
Plugins set their attributes in configure(), because the
constructor is not public API.
Diffstat (limited to 'buildstream/plugins/sources/ostree.py')
-rw-r--r-- | buildstream/plugins/sources/ostree.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/buildstream/plugins/sources/ostree.py b/buildstream/plugins/sources/ostree.py index bf72fa784..b311e24bf 100644 --- a/buildstream/plugins/sources/ostree.py +++ b/buildstream/plugins/sources/ostree.py @@ -58,6 +58,7 @@ from buildstream._ostree import OSTreeError class OSTreeSource(Source): + # pylint: disable=attribute-defined-outside-init def configure(self, node): |