-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Labels
False Positive 🦟A message is emitted but nothing is wrong with the codeA message is emitted but nothing is wrong with the codeNeeds PRThis issue is accepted, sufficiently specified and now needs an implementationThis issue is accepted, sufficiently specified and now needs an implementation
Milestone
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__().
pwwang and hudcap
Metadata
Metadata
Assignees
Labels
False Positive 🦟A message is emitted but nothing is wrong with the codeA message is emitted but nothing is wrong with the codeNeeds PRThis issue is accepted, sufficiently specified and now needs an implementationThis issue is accepted, sufficiently specified and now needs an implementation