``` [style] based_on_style=pep8 use_tabs=True ``` transforms: ``` class Foo(object): » def __init__(self): » #» pass » » pass ``` into: ``` class Foo(object): » def __init__(self): » » #» pass » » pass ``` I think (wrong indented) block comments should be indented, but the indentation in the comment should be removed. So that we get: ``` class Foo(object): » def __init__(self): » » # pass » » pass ```