Skip to content

Commit 09edde9

Browse files
authored
GH-99554: Trim trailing whitespace (GH-100435)
Automerge-Triggered-By: GH:brandtbucher
1 parent 4cc63e0 commit 09edde9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/compile.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ location_is_after(location loc1, location loc2) {
153153
static inline bool
154154
same_location(location a, location b)
155155
{
156-
return a.lineno == b.lineno &&
156+
return a.lineno == b.lineno &&
157157
a.end_lineno == b.end_lineno &&
158158
a.col_offset == b.col_offset &&
159159
a.end_col_offset == b.end_col_offset;

0 commit comments

Comments
 (0)