Open
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