Skip to content
Snippets Groups Projects
Commit a347a529 authored by Daniel Silverstone's avatar Daniel Silverstone
Browse files

buildelement.py: Quieten a lint about `__commands`


Unfortunately elements don't override `__init__` in general, so
we have to quieten pylint here.

Signed-off-by: default avatarDaniel Silverstone <daniel.silverstone@codethink.co.uk>
parent 493f701b
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,7 @@ class BuildElement(Element):
#############################################################
def configure(self, node):
self.__commands = {}
self.__commands = {} # pylint: disable=attribute-defined-outside-init
# FIXME: Currently this forcefully validates configurations
# for all BuildElement subclasses so they are unable to
......
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