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:
committed by
Marc Bonnici
parent
9025ea32b1
commit
f74b7ae78c
@ -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
|
||||
|
Reference in New Issue
Block a user