# Aligned with opening delimiter.
foo = long_function_name(var_one, var_two,
var_three, var_four)
# More indentation included to distinguish this from the rest.
def long_function_name(
var_one, var_two, var_three,
var_four):
print(var_one)
# Hanging indents should add a level.
foo = long_function_name(
var_one, var_two,
var_three, var_four)
This indent script gets the first and the last case right, but does not add more indentation (e.g. double sw) as recommended. It would be much appreciated if you could add support for that.
PEP8 has the following recommendation:
This indent script gets the first and the last case right, but does not add more indentation (e.g. double sw) as recommended. It would be much appreciated if you could add support for that.