Add example of good code below example of bad code

This commit is contained in:
Dull Bananas
2019-07-20 09:17:54 -07:00
parent 0b6c110a5c
commit fb7efcf3f1
+8 -1
View File
@@ -130,7 +130,14 @@ the Requests codebase::
foo = long_function_name(var_one, var_two,
var_three, var_four)
No. Just don't. Please.
No. Just don't. Please. This is much better::
foo = long_function_name(
var_one,
var_two,
var_three,
var_four,
)
Docstrings are to follow the following syntaxes::