Skip to content

Commit

Permalink
Fix style inconsistency with "and" on continuation line.
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanrossum committed Apr 14, 2016
1 parent 321eda6 commit 1a6cc45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pep-0008.txt
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ Acceptable options in this situation include, but are not limited to::
do_something()

# Add some extra indentation on the conditional continuation line.
if (this_is_one_thing
and that_is_another_thing):
if (this_is_one_thing and
that_is_another_thing):
do_something()

The closing brace/bracket/parenthesis on multi-line constructs may
Expand Down

0 comments on commit 1a6cc45

Please sign in to comment.