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