-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Do not raise unused-argument for singledispatch implementations when the argument is used in another implementation #1034
Labels
Comments
rogalski
added a commit
to rogalski/pylint
that referenced
this issue
Sep 2, 2016
rogalski
added a commit
to rogalski/pylint
that referenced
this issue
Nov 6, 2016
…implementations Closes pylint-dev#1032 and pylint-dev#1034
rogalski
added a commit
to rogalski/pylint
that referenced
this issue
Nov 30, 2016
…implementations Closes pylint-dev#1032 and pylint-dev#1034
rogalski
added a commit
to rogalski/pylint
that referenced
this issue
Dec 3, 2016
…implementations Closes pylint-dev#1032 and pylint-dev#1034 fix python version guard remove dead code drop redundant exception caught, improve coverage
rogalski
added a commit
to rogalski/pylint
that referenced
this issue
Dec 3, 2016
…implementations Closes pylint-dev#1032 and pylint-dev#1034
This is fixed now in the master branch. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Steps to reproduce
In
pylint warns that the implementation of
func
forint
does not use argumentarg
. But similarly to #225, it typically makes sense to just maintain the same signature for all implementations.Current behavior
warning
Expected behavior
no warning
pylint --version output
pylint 1.6.4,
astroid 1.4.7
Python 3.5.2 (default, Jun 28 2016, 08:46:01)
[GCC 6.1.1 20160602]
The text was updated successfully, but these errors were encountered: