-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
@overload
causes missing-param-doc
despite parameter being documented
#9739
Labels
False Positive 🦟
A message is emitted but nothing is wrong with the code
Needs PR
This issue is accepted, sufficiently specified and now needs an implementation
Milestone
Comments
finite-state-machine
added
the
Needs triage 📥
Just created, needs acknowledgment, triage, and proper labelling
label
Jun 20, 2024
mbyrnepr2
added
Needs PR
This issue is accepted, sufficiently specified and now needs an implementation
False Positive 🦟
A message is emitted but nothing is wrong with the code
and removed
Needs triage 📥
Just created, needs acknowledgment, triage, and proper labelling
labels
Jun 20, 2024
mbyrnepr2
added a commit
to mbyrnepr2/pylint
that referenced
this issue
Jun 20, 2024
… decorated with ``typing.overload`` is missing a doc param in its docstring. Closes pylint-dev#9739
mbyrnepr2
added a commit
to mbyrnepr2/pylint
that referenced
this issue
Jun 20, 2024
…s decorated with ``typing.overload`` was expected to have a docstring specifying its parameters. Closes pylint-dev#9739
mbyrnepr2
added a commit
to mbyrnepr2/pylint
that referenced
this issue
Jun 20, 2024
…s decorated with ``typing.overload`` was expected to have a docstring specifying its parameters. Closes pylint-dev#9739
@mbyrnepr2 Thanks for the very quick fix! |
jacobtylerwalls
pushed a commit
that referenced
this issue
Jul 15, 2024
* Fix a false positive for ``missing-param-doc`` where a method which is decorated with ``typing.overload`` was expected to have a docstring specifying its parameters. Closes #9739
jacobtylerwalls
pushed a commit
that referenced
this issue
Jul 15, 2024
* Fix a false positive for ``missing-param-doc`` where a method which is decorated with ``typing.overload`` was expected to have a docstring specifying its parameters. Closes #9739 (cherry picked from commit 9cd5c37) Co-authored-by: Mark Byrne <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
False Positive 🦟
A message is emitted but nothing is wrong with the code
Needs PR
This issue is accepted, sufficiently specified and now needs an implementation
Bug description
Analyzing the following code with pylint, using the given rcfile, results in an unexpected
missing-param-doc
error:Configuration
Command used
Pylint output
Expected behavior
Since
_iterable
is clearly documented in thegoogle
style, there should be nomissing-param-doc
error.Pylint version
OS / Environment
macOS 14
Additional dependencies
No response
Attachments
This zip contains
bug.py
andpylintrc-bug
.The text was updated successfully, but these errors were encountered: