================
@@ -158,6 +158,16 @@ def get_failures(junit_objects) -> dict[str, 
list[tuple[str, str]]]:
     return failures
 
 
+def are_all_failures_explained(
+    failures: list[tuple[str, str]], failure_explanations: dict[str, 
FailureExplanation]
+) -> bool:
+    for failure in failures:
----------------
DavidSpickett wrote:

You can do the unpacking here on the same line:
```
for failed_action, _ in failures:
```

https://github.com/llvm/llvm-project/pull/172394
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

Reply via email to