Clarifying code style for multiline constructs.

This commit is contained in:
Dan Helfman 2018-07-28 15:21:19 -07:00
parent d93da55ce9
commit 9968a15ef8
1 changed files with 4 additions and 4 deletions

View File

@ -334,10 +334,10 @@ the following deviations from PEP 8:
* For strings, prefer single quotes over double quotes. * For strings, prefer single quotes over double quotes.
* Limit all lines to a maximum of 100 characters. * Limit all lines to a maximum of 100 characters.
* Use trailing commas within multiline values or argument lists. * Use trailing commas within multiline values or argument lists.
* Within multiline constructs: * For multiline constructs, put opening and closing delimeters on lines
* Use standard four-space indentation. Don't align indentation with an opening separate from their contents.
delimeter. * Within multiline constructs, use standard four-space indentation. Don't align
* Put opening and closing delimeters on lines separate from their contents. indentation with an opening delimeter.
### Development ### Development