Changes
Page history
Update Python coding guidelines
authored
Oct 21, 2021
by
Moreau Nicolas
Show whitespace changes
Inline
Side-by-side
Python-coding-guidelines.md
View page @
ebc78c44
...
...
@@ -11,11 +11,13 @@ Continuation lines should align wrapped elements either vertically using Python'
Correct:
```
# Aligned with opening delimiter.
```
python
# Aligned with opening delimiter.
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.`
...
...
...
...