From 2db55f6a48962aa7ff4cc3b0ee4b37177f605bdc Mon Sep 17 00:00:00 2001 From: Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com> Date: Sat, 15 Apr 2023 03:53:00 +0200 Subject: Fix false negative for no-value-for-parameter: positional-only args and **kwargs (#8575) --- doc/whatsnew/fragments/8559.false_negative | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 doc/whatsnew/fragments/8559.false_negative (limited to 'doc') 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 -- cgit v1.2.1