Skip to content

Commit 8a0e2c5

Browse files
committed
Fix indentation
1 parent fef8ef4 commit 8a0e2c5

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

Python/codegen.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4646,9 +4646,9 @@ codegen_comprehension_generator_helper(compiler *c, location elt_loc, int depth,
46464646
VISIT(c, expr, elt);
46474647
VISIT(c, expr, val);
46484648
elt_loc = LOCATION(elt->lineno,
4649-
val->end_lineno,
4650-
elt->col_offset,
4651-
val->end_col_offset);
4649+
val->end_lineno,
4650+
elt->col_offset,
4651+
val->end_col_offset);
46524652
ADDOP_I(c, elt_loc, MAP_ADD, depth + 1);
46534653
}
46544654
break;
@@ -4744,9 +4744,9 @@ codegen_sync_comprehension_generator(compiler *c, location loc,
47444744
avoid_creation));
47454745
if (type == COMP_DICTCOMP && val != NULL) {
47464746
elt_loc = LOCATION(elt->lineno,
4747-
val->end_lineno,
4748-
elt->col_offset,
4749-
val->end_col_offset);
4747+
val->end_lineno,
4748+
elt->col_offset,
4749+
val->end_col_offset);
47504750
}
47514751
}
47524752

@@ -4833,9 +4833,9 @@ codegen_async_comprehension_generator(compiler *c, location loc,
48334833
avoid_creation));
48344834
if (type == COMP_DICTCOMP && val != NULL) {
48354835
elt_loc = LOCATION(elt->lineno,
4836-
val->end_lineno,
4837-
elt->col_offset,
4838-
val->end_col_offset);
4836+
val->end_lineno,
4837+
elt->col_offset,
4838+
val->end_col_offset);
48394839
}
48404840
}
48414841

0 commit comments

Comments
 (0)