1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Disable pylint unused arg in __new__

Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
Werner Lewis
2022-08-24 18:09:10 +01:00
parent 9990b30568
commit a195ce73f5

View File

@ -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)