We format ```python try: pass except X: pass else: # comment print() ``` as ```python try: pass except X: pass # comment else: print() ``` even though the comment should rather remain a leading comment of the print statement
We format
as
even though the comment should rather remain a leading comment of the print statement