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** ```python for (a, b) in c: pass ``` **Desired style** <!-- How do you think _Black_ should format the above snippets: --> ```python for a, b in c: pass ```
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
Desired style