Closed
Description
Related to tuple unpacking opinions in #445.
Describe the style change
Unnecessary parentheses in for loop variable unpacking should be removed.
Examples in the current Black style
for (a, b) in c:
pass
Desired style
for a, b in c:
pass
Activity