summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMark Byrne <31762852+mbyrnepr2@users.noreply.github.com>2023-05-15 20:51:58 +0200
committerGitHub <noreply@github.com>2023-05-15 20:51:58 +0200
commit0a6c21bfab8237431c9f5198068451b243e91448 (patch)
tree8355cd667c86585e6f8b42b05675b49f1e6951ab /doc
parentf168ad1fa902ddcb024b9824993d250d5d1348ff (diff)
downloadpylint-git-0a6c21bfab8237431c9f5198068451b243e91448.tar.gz
Fix a false negative for ``too-many-arguments`` and positional-only and keyword-only arguments (#8674)
Closes #8667
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/fragments/8667.false_negative3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/whatsnew/fragments/8667.false_negative b/doc/whatsnew/fragments/8667.false_negative
new file mode 100644
index 000000000..3468a1264
--- /dev/null
+++ b/doc/whatsnew/fragments/8667.false_negative
@@ -0,0 +1,3 @@
+Fix a false negative for ``too-many-arguments`` by considering positional-only and keyword-only parameters.
+
+Closes #8667