python-minifier
python-minifier copied to clipboard
Unnecessary parentheses around assignment expressions in tuple
When I'm trying to minify the code below:
{(A:=1,B:=2)}
The minifier adds parentheses around the assignment expression, resulting in an increase of 2 bytes per assignment expressions:
{((A:=1),(B:=2))}