Skip to content

Commit 1a6cc45

Browse files
committed
Fix style inconsistency with "and" on continuation line.
1 parent 321eda6 commit 1a6cc45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pep-0008.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ Acceptable options in this situation include, but are not limited to::
147147
do_something()
148148

149149
# Add some extra indentation on the conditional continuation line.
150-
if (this_is_one_thing
151-
and that_is_another_thing):
150+
if (this_is_one_thing and
151+
that_is_another_thing):
152152
do_something()
153153

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

0 commit comments

Comments
 (0)