summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMark Byrne <31762852+mbyrnepr2@users.noreply.github.com>2023-04-15 03:53:00 +0200
committerGitHub <noreply@github.com>2023-04-14 21:53:00 -0400
commit2db55f6a48962aa7ff4cc3b0ee4b37177f605bdc (patch)
treeb0dcb79cbd729dc956670f607a8a8be5db0f850e /doc
parent4c0a32334d9a5b73dcfe3f56868bb933da8e9a3f (diff)
downloadpylint-git-2db55f6a48962aa7ff4cc3b0ee4b37177f605bdc.tar.gz
Fix false negative for no-value-for-parameter: positional-only args and **kwargs (#8575)
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/fragments/8559.false_negative3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/whatsnew/fragments/8559.false_negative b/doc/whatsnew/fragments/8559.false_negative
new file mode 100644
index 000000000..37c415138
--- /dev/null
+++ b/doc/whatsnew/fragments/8559.false_negative
@@ -0,0 +1,3 @@
+Fix false negative for ``no-value-for-parameter`` when a function, whose signature contains both a positional-only parameter ``name`` and also ``*kwargs``, is called with a keyword-argument for ``name``.
+
+Closes #8559