summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMark Byrne <31762852+mbyrnepr2@users.noreply.github.com>2023-04-13 08:46:51 +0200
committerGitHub <noreply@github.com>2023-04-13 06:46:51 +0000
commit56fa5dce747a46f1dcba6eca003bb22fcc347247 (patch)
treee534e85bdad1f79295aa4a0812d0f12dc54e2093 /doc
parent0cd41b1fb15e31eb311b61f93bc27f7cacc2f7ac (diff)
downloadpylint-git-56fa5dce747a46f1dcba6eca003bb22fcc347247.tar.gz
Fix false positive for ``keyword-arg-before-vararg`` (#8571)
* Fix false positive for ``keyword-arg-before-vararg`` when a positional-only parameter with a default value precedes ``*args``. Closes #8570
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