Update Python coding guidelines authored by Moreau Nicolas's avatar Moreau Nicolas
...@@ -11,11 +11,13 @@ Continuation lines should align wrapped elements either vertically using Python' ...@@ -11,11 +11,13 @@ Continuation lines should align wrapped elements either vertically using Python'
Correct: Correct:
```# Aligned with opening delimiter. ```python
# Aligned with opening delimiter.
foo = long_function_name(var_one, var_two, foo = long_function_name(var_one, var_two,
var_three, var_four)``` var_three, var_four)
```
# Add 4 spaces (an extra level of indentation) to distinguish arguments from the rest.` # Add 4 spaces (an extra level of indentation) to distinguish arguments from the rest.`
... ...
......