We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
given this function:
def frob(arg, *args, **kwargs): pass
and this setting
ignored-argument-names=arg|args|kwargs
pylint will report
unused-argument / Unused argument 'args' unused-argument / Unused argument 'kwargs'
which i wouldn't expect. weirdly, adding them to dummy-variables-rgx actually silences the warning.
dummy-variables-rgx
using pylint 1.9.2
The text was updated successfully, but these errors were encountered:
Thanks for the report!
Sorry, something went wrong.
brycepg
No branches or pull requests
Steps to reproduce
given this function:
and this setting
pylint will report
which i wouldn't expect. weirdly, adding them to
dummy-variables-rgx
actually silences the warning.using pylint 1.9.2
The text was updated successfully, but these errors were encountered: