summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-04-15 10:38:55 +0200
committerGitHub <noreply@github.com>2023-04-15 10:38:55 +0200
commitec96bdc206350e378137da27c2f4cd103a94dc63 (patch)
tree5c1f8545993ec86533c6360e94ac38a2b244a13b /doc
parent16fe498b68c170b317eaea94bf85efd568a1dd0a (diff)
downloadpylint-git-ec96bdc206350e378137da27c2f4cd103a94dc63.tar.gz
Fix false positive for ``keyword-arg-before-vararg`` (#8571) (#8578)
* Fix false positive for ``keyword-arg-before-vararg`` when a positional-only parameter with a default value precedes ``*args``. Closes #8570 (cherry picked from commit 56fa5dce747a46f1dcba6eca003bb22fcc347247) Co-authored-by: Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/fragments/8570.false_positive3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/whatsnew/fragments/8570.false_positive b/doc/whatsnew/fragments/8570.false_positive
new file mode 100644
index 000000000..fec3a855e
--- /dev/null
+++ b/doc/whatsnew/fragments/8570.false_positive
@@ -0,0 +1,3 @@
+Fix false positive for ``keyword-arg-before-vararg`` when a positional-only parameter with a default value precedes ``*args``.
+
+Closes #8570