Skip to content

Commit

Permalink
scripts: fix header format for contract addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
bilbeyt committed Sep 7, 2023
1 parent d98fe58 commit d0482fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/generate-contract-addresses-doc-page.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def main() -> None:
textwrap.dedent(
"""\
Beamer contract addresses
=========================
-------------------------
"""
)
)
Expand Down Expand Up @@ -75,7 +75,7 @@ def rows() -> Generator[tuple[str, str], None, None]:
url = explorer.format(address=address)
yield name[0], f"`{address} <{url}>`__"

section_marker = "-" * len(section_name)
section_marker = "~" * len(section_name)
print(f"\n{section_name}")
print(f"{section_marker}\n")
_generate_table(rows())
Expand Down

0 comments on commit d0482fc

Please sign in to comment.