better-align
better-align copied to clipboard
Unexpected alignment of python multiple declarations
original code:
abc, bcd = (1, 0)
cde = 1
gives:
abc, bcd = (1, 0)
cde = 1
expected:
abc, bcd = (1, 0)
cde = 1
I am having the same issue. Not sure which setting I have to change... this make the extension a lot less useful in python. So I would appreciate if someone knows how to fix this.