Disable pylint unused arg in __new__
Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
parent
9990b30568
commit
a195ce73f5
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ class BaseTarget(metaclass=ABCMeta):
|
|||
test_name = ""
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
# pylint: disable=unused-argument
|
||||
cls.count += 1
|
||||
return super().__new__(cls)
|
||||
|
||||
|
|
Loading…
Reference in a new issue