We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 895f1d9 commit 6f0f7fbCopy full SHA for 6f0f7fb
llvm/utils/UpdateTestChecks/common.py
@@ -2282,7 +2282,9 @@ def add_checks(
2282
else:
2283
if ginfo.get_version() >= 7:
2284
# 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() == "" }
+ blank_line_indices = {
2286
+ i for i, line in enumerate(func_body) if line.strip() == ""
2287
+ }
2288
2289
blank_line_indices = set()
2290
0 commit comments