**Describe the style change** If you have `(...) = something`, the LHS parenthesis, I think, should not be kept. **Examples in the current _Black_ style** <!-- Think of some short code snippets that show how the current _Black_ style is not great: --> ```python def a(): return 1, 2, 3 (b) = a()[0] (c, *_) = a() ``` **Desired style** <!-- How do you think _Black_ should format the above snippets: --> ```python def a(): return 1, 2, 3 b = a()[0] c, *_ = a() ```