1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-06-18 06:16:05 +01:00

framework: fix pylint issues

Fix/disable checks for issues reported by pylint under wa/framework.
This commit is contained in:
Sergei Trofimov
2018-07-04 13:40:21 +01:00
committed by Marc Bonnici
parent 9025ea32b1
commit f74b7ae78c
20 changed files with 88 additions and 76 deletions

@ -40,6 +40,7 @@ class SubCommand(object):
command line arguments.
"""
name = None
help = None
usage = None
description = None
@ -81,7 +82,7 @@ class SubCommand(object):
raise NotImplementedError()
class Command(Plugin, SubCommand):
class Command(Plugin, SubCommand): # pylint: disable=abstract-method
"""
Defines a Workload Automation command. This will be executed from the
command line as ``wa <command> [args ...]``. This defines the name to be