In my project, running unused-arguments reports a lot of what we consider false positives.
These are for instance:
lambdas to send into specific APIs but were' only interested in some arguments (easy to fix with underscore)
mock functions in unit tests to monkeypatch over the original functions. These often must have the exact same signature of the function they are replacing
Therefore, I'd like for there to be some extra filters
ignore lambdas
ignore nested functions (use only top level functions, in modules or classes in modules).
This is easy enough to fix. I can send a proposed patch.
Howdy.
In my project, running unused-arguments reports a lot of what we consider false positives. These are for instance:
Therefore, I'd like for there to be some extra filters
This is easy enough to fix. I can send a proposed patch.
Thank you,