Skip to content

Commit 6f0f7fb

Browse files
committed
Make formatter happy
1 parent 895f1d9 commit 6f0f7fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

llvm/utils/UpdateTestChecks/common.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2282,7 +2282,9 @@ def add_checks(
22822282
else:
22832283
if ginfo.get_version() >= 7:
22842284
# Record the indices of blank lines in the function body preemptively.
2285-
blank_line_indices = { i for i, line in enumerate(func_body) if line.strip() == "" }
2285+
blank_line_indices = {
2286+
i for i, line in enumerate(func_body) if line.strip() == ""
2287+
}
22862288
else:
22872289
blank_line_indices = set()
22882290

0 commit comments

Comments
 (0)