google / yapf

A formatter for Python files
Apache License 2.0
13.75k stars 889 forks source link

Collapsing lambdas onto too-long line #603

Open DRMacIver opened 6 years ago

DRMacIver commented 6 years ago

yapf (tested with 2c13f6f) turns the following:

lambda: (
    lambda: b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
)

into the following:

lambda: (lambda: b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00")

Unfortunately this results in a line that is 81 characters long, while the former correctly fit into 80 characters.

abhay498 commented 6 years ago

I will be happy to work on this.