Description
I have a class where I overload the new() call.
The new __new__()
call is required to have the same arguments as the __init__()
, so after I make some checks, I call super().__new__(cls)
. In this, the input arguments are implicitly passed on to __init__()
.
However, I get the unused-argument pylint warning, as I do not use all the arguments within the __new__()
.