summaryrefslogtreecommitdiff
path: root/doc/whatsnew/2.6.rst
diff options
context:
space:
mode:
authorBryce Guinta <bryce.guinta@protonmail.com>2020-06-16 09:47:21 -0400
committerClaudiu Popa <pcmanticore@gmail.com>2020-06-17 08:54:17 +0200
commit5016fd1adeece312bbe19ff41416149c6a57d464 (patch)
tree069ddc2901b73888f54c3acb742d68f0d57b3e05 /doc/whatsnew/2.6.rst
parent95f3fc3b783ab873c1ea2dfb11d0f2fa20dcea1a (diff)
downloadpylint-git-5016fd1adeece312bbe19ff41416149c6a57d464.tar.gz
Fix false positive superfluous parens for walrus operator
Close #3383
Diffstat (limited to 'doc/whatsnew/2.6.rst')
-rw-r--r--doc/whatsnew/2.6.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/whatsnew/2.6.rst b/doc/whatsnew/2.6.rst
index 5ab2028c1..dc659d656 100644
--- a/doc/whatsnew/2.6.rst
+++ b/doc/whatsnew/2.6.rst
@@ -23,3 +23,5 @@ Other Changes
* The `no-space-check` option has been removed, it's no longer possible to consider empty line like a `trailing-whitespace` by using clever options.
* `mixed-indentation` has been removed, it is no longer useful since TabError is included directly in python3
+
+* Fix superfluous-parens false-positive for the walrus operator