Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Yes:   # Aligned with opening delimiter
   foo = long_function_name(var_one, var_two,
                                              var var_three, var_four)
   # 4-space hanging indent; nothing on first line
   foo = long_function_name(
         var_one, var_two, var_three, var_four)

...