Skip to content

Commit 69259de

Browse files
committed
Fix doctest for E125 and E129
1 parent 3f340b8 commit 69259de

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pep8.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,10 +402,11 @@ def continued_indentation(logical_line, tokens, indent_level, noqa, verbose):
402402
E122: a = (\n42)
403403
E123: a = (\n 42\n )
404404
E124: a = (24,\n 42\n)
405-
E125: if (a or\n b):\n pass
405+
E125: if (\n b):\n pass
406406
E126: a = (\n 42)
407407
E127: a = (24,\n 42)
408408
E128: a = (24,\n 42)
409+
E129: if (a or\n b):\n pass
409410
"""
410411
first_row = tokens[0][2][0]
411412
nrows = 1 + tokens[-1][2][0] - first_row

0 commit comments

Comments
 (0)