You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would expect that all lines would break at max line length, and that the last line would be shorter.
We are not sure what would the desired splitting format, here are some propositions to be discussed:
#1AA=BB=CC=DD=EE=FF=GG=HH=JJ=KK=LL=MM=NN=OO=PP=QQ= (
RR ) =SS=TT=UU=WW=XX=YY=ZZ=1#2AA=BB=CC=DD=EE=FF=GG=HH=JJ=KK=LL=MM=NN=OO=PP= ( QQ
) =RR=SS=TT=UU=WW=XX=YY=ZZ=1#3 - looks the best for meAA=BB=CC=DD=EE=FF=GG=HH=JJ=KK=LL=MM=NN=OO=PP=QQ= (
RR ) =SS=TT=UU=WW=XX=YY=ZZ=1#4AA=BB=CC=DD=EE=FF=GG=HH=JJ=KK=LL=MM=NN=OO=PP=QQ= (
RR
) =SS=TT=UU=WW=XX=YY=ZZ=1#5AA=BB=CC=DD=EE=FF=GG=HH=JJ=KK=LL=MM=NN=OO=PP=QQ= \
RR=SS=TT=UU=WW=XX=YY=ZZ=1
All of above cases look more usable than currently formatted version.
Additional context
This a legitimate minified case from code, where we needed to assign a lot of alias names to an Enum field.
The text was updated successfully, but these errors were encountered:
AA=BB=CC=DD=EE=FF=GG=HH=JJ=KK=LL=MM=NN=OO=PP=QQ=RR= (
SS
) =TT=UU=WW=XX=YY=ZZ=1
playground link which is almost the same as case number 4, so this should be good to close. The change looks to have been put into preview by #4010 and later stabilized in version 2024 as part of #3368. #4010 also added a roughly equivalent test case here.
Describe the style change
Hello,
We noticed that Black breaks long chains of assignments into multiple lines in a very unexpected way.
Example source code
Examples in the current Black style
Black formats it in this way (last line is matched to max line length, but previous elements get 2 lines per one element):
Desired style
We would expect that all lines would break at max line length, and that the last line would be shorter.
We are not sure what would the desired splitting format, here are some propositions to be discussed:
All of above cases look more usable than currently formatted version.
Additional context
This a legitimate minified case from code, where we needed to assign a lot of alias names to an Enum field.
The text was updated successfully, but these errors were encountered: