Skip to content

Commit 7eb8727

Browse files
committed
ast: fix wrong indentation under if conditional
Fix indentation so as to improve readability. Signed-off-by: Ani Sinha <[email protected]>
1 parent 1654556 commit 7eb8727

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ast.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2284,7 +2284,7 @@ ast_for_print_stmt(struct compiling *c, const node *n)
22842284
dest = ast_for_expr(c, CHILD(n, 2));
22852285
if (!dest)
22862286
return NULL;
2287-
start = 4;
2287+
start = 4;
22882288
}
22892289
values_count = (NCH(n) + 1 - start) / 2;
22902290
if (values_count) {

0 commit comments

Comments
 (0)