[libcxx-commits] [libcxx] [libc++] Remove labels from CSV status pages (PR #105581)

via libcxx-commits libcxx-commits at lists.llvm.org
Wed Aug 21 13:47:48 PDT 2024


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {darker}-->


:warning: Python code formatter, darker found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
darker --check --diff -r 84fa7b438e1fba0c88b21784e716926017b9fe49...c2f3d76655c0934b7727b76016c248465f55c133 libcxx/utils/synchronize_csv_status_files.py
``````````

</details>

<details>
<summary>
View the diff from darker here.
</summary>

``````````diff
--- synchronize_csv_status_files.py	2024-08-21 20:39:46.000000 +0000
+++ synchronize_csv_status_files.py	2024-08-21 20:47:19.480372 +0000
@@ -169,11 +169,11 @@
 
     def __repr__(self) -> str:
         return repr(self.original) if self.original is not None else repr(self.for_printing())
 
     @staticmethod
-    def from_csv_row(row: Tuple[str, str, str, str, str]):# -> PaperInfo:
+    def from_csv_row(row: Tuple[str, str, str, str, str]):  # -> PaperInfo:
         """
         Given a row from one of our status-tracking CSV files, create a PaperInfo object representing that row.
         """
         # Extract the paper number from the first column
         match = re.search(r"((P[0-9R]+)|(LWG[0-9]+)|(N[0-9]+))\s+", row[0])

``````````

</details>


https://github.com/llvm/llvm-project/pull/105581


More information about the libcxx-commits mailing list