Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c64ae92

Browse files
committed
fix indentation
1 parent c8909dd commit c64ae92

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Python/ast.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2530,13 +2530,13 @@ ast_for_call(struct compiling *c, const node *n, expr_ty func)
25302530
* then is very confusing.
25312531
*/
25322532
if (e->kind == Lambda_kind) {
2533-
ast_error(CHILD(ch, 0), "lambda cannot contain assignment");
2534-
return NULL;
2533+
ast_error(CHILD(ch, 0), "lambda cannot contain assignment");
2534+
return NULL;
25352535
} else if (e->kind != Name_kind) {
2536-
ast_error(CHILD(ch, 0), "keyword can't be an expression");
2537-
return NULL;
2536+
ast_error(CHILD(ch, 0), "keyword can't be an expression");
2537+
return NULL;
25382538
} else if (forbidden_name(e->v.Name.id, ch, 1)) {
2539-
return NULL;
2539+
return NULL;
25402540
}
25412541
key = e->v.Name.id;
25422542
for (k = 0; k < nkeywords; k++) {

0 commit comments

Comments
 (0)