summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-09-01 09:31:16 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-09-01 10:00:30 +0200
commit3f122e08bd1cfdf7d4c9dfa77929cb4f8f8be081 (patch)
tree85393f4a2404b521e43b76e639e9184f225e474e /doc
parentd57931bf309e548d3b4f406c9df4df4bd514f188 (diff)
downloadpylint-git-3f122e08bd1cfdf7d4c9dfa77929cb4f8f8be081.tar.gz
Fix false positive ``superfluous-parens`` for tuples
Tuples can be created with inner tuples. This creates double parenthesis which we flagged incorrectly. This closes #4907
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.11.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/whatsnew/2.11.rst b/doc/whatsnew/2.11.rst
index 6a22d5ba7..cdbba865d 100644
--- a/doc/whatsnew/2.11.rst
+++ b/doc/whatsnew/2.11.rst
@@ -65,3 +65,7 @@ Other Changes
and ``pathlib.Path().write_text()``
Closes #4945
+
+* Fix false positive ``superfluous-parens`` for tuples created with inner tuples
+
+ Closes #4907