Skip to content

Add 4 spaces (an extra level of indentation) to distinguish arguments from the rest. #65

@parkershamblin

Description

@parkershamblin

See PEP8 Indentation for example.

Minimal code example:

What I want the code to look like after pressing enter:

# Add 4 spaces (an extra level of indentation) to distinguish arguments from the rest.
def long_function_name(
        var_one, var_two, var_three,
        var_four):
    print(var_one)

What the code actually looks like after pressing enter:

def long_function_name(
    var_one, var_two, var_three,
    var_four):
    print(var_one)

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions