Skip to content

Commit 4fe9b6e

Browse files
committed
chore(cli): fix up table headers in report
1 parent 986df6e commit 4fe9b6e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/scripts/generate_eip_report.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
1818
### Summary Table
1919
20-
| File | EIP | Referenced Version | Latest Version | EIP Link |
21-
| ---- | --- | ----------------- | ------------- | -------- |
20+
| File | EIP Link | Referenced Version | Latest Version |
21+
| ---- | -------- | ------------------ | -------------- |
2222
$summary_table
2323
2424
### Verbatim Failures
@@ -90,7 +90,7 @@ def generate_summary_table(failures):
9090
rows = []
9191
for file_path, eip_num, _, eip_link, ref_version, latest_version in failures:
9292
rows.append(
93-
f"| `{file_path}` | `{ref_version}` | `{latest_version}` | [{eip_num}]({eip_link}) |" # noqa: E501
93+
f"| `{file_path}` | [{eip_num}]({eip_link}) | `{ref_version}` | `{latest_version}` |"
9494
)
9595
return "\n".join(rows)
9696

0 commit comments

Comments
 (0)