-
-
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
Fix a false positive for missing-param-doc
#9740
Fix a false positive for missing-param-doc
#9740
Conversation
cd813b4
to
05896fa
Compare
This comment has been minimized.
This comment has been minimized.
β¦s decorated with ``typing.overload`` was expected to have a docstring specifying its parameters. Closes pylint-dev#9739
05896fa
to
cae03f1
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Codecov ReportAll modified and coverable lines are covered by tests β
Additional details and impacted files@@ Coverage Diff @@
## main #9740 +/- ##
==========================================
- Coverage 95.85% 95.80% -0.06%
==========================================
Files 174 174
Lines 18873 18885 +12
==========================================
+ Hits 18090 18092 +2
- Misses 783 793 +10
|
This comment has been minimized.
This comment has been minimized.
Sorry I was using the "open close" principle to trigger the codecov run since there was an issue on a previous run :D |
e815a7f
to
cae03f1
Compare
Sorry for the noise -- committed to the wrong branch. π . Thanks Mark! |
This comment has been minimized.
This comment has been minimized.
Co-authored-by: Jacob Walls <[email protected]>
π€ According to the primer, this change has no effect on the checked open source code. π€π This comment was generated for commit 1c5289b |
* 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]>
Type of Changes
Description
Fix a false positive for
missing-param-doc
where a method which is decorated withtyping.overload
was expected to have a docstring specifying its parameters.Closes #9739