Skip to content

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

Open
@parkershamblin

Description

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)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions